function opennew(g) {
var sh=0;
var sw=0;
sh=screen.height/2-(600/2);
sw=screen.width/2-(600/2);
var nwindow = window.open('','','Toolbar=no, Location=0, Directories=no, Status=no, Menubar=no, Scrollbars=no, Resizable=no, Width=600, Height=600');
nwindow.moveTo(sw, sh);

var string = "<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.01 Transitional//EN\" \"http://www.w3.org/TR/html4/loose.dtd\">"+
"<html>"+
"<head>"+
"<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\">"+
"<title>Работы студии ArtPV. Логотипы студии ArtPV</title>"+
"<link href=\"/css/portfolio_full_size.css\" rel=\"stylesheet\" type=\"text/css\">"+
"</head>"+
"<body>"+
"<div class=\"wind_madeby\"></div>"+
"<center>"+
"<div class=\"window_thumbs\" style=\"background:url('/img/logos/"+g+"')\">&nbsp;</div>"+
"</center>"+
"</body>"+
"</html>";

nwindow.document.write(string);
nwindow.document.close(); 
nwindow.focus();
}
