function OpenNewWindow(bigurl, width, height)
{
    var newWindow = window.open("", "pictureViewer", 
        "location=no, directories=no, fullscreen=no, menubar=no, status=no, toolbar=no, width=" + width + ", height=" + height + ", scrollbars=no");
    newWindow.document.writeln("<html>");
	newWindow.document.writeln("<head>");
	newWindow.document.writeln("<title>www.russiaroadshow.com</title>");
	newWindow.document.writeln("<link rel='STYLESHEET' type='text/css' href='../../../css/002.css'>");
	newWindow.document.writeln("</head>");
    newWindow.document.writeln("<body leftmargin='0' topmargin='0' marginwidth='0' marginheight='0'>");
	newWindow.document.writeln("<table width='100%' height='100%' border='0' align='center' cellpadding='0' cellspacing='0'>");
	newWindow.document.writeln("<tr><td bgcolor='#f4f4f4'><div align='center' style='padding:6px;'>");
    newWindow.document.writeln("<a href='javascript:window.close();'>");
    newWindow.document.writeln("<img src='" + bigurl + "' id='bigImage' border='0'/>");
    newWindow.document.writeln("</a>");
	newWindow.document.writeln("</div></td></tr>");
	newWindow.document.writeln("<tr><td height='100%'><div align='center' id='showphp'><a href='javascript:window.close();'>Close window</a></div></td></tr>");
	newWindow.document.writeln("</table>");
    newWindow.document.writeln("</body>
</html>");
    newWindow.document.close();
}
