function openImage (width, height,src) {

width+=20;
height+=20;
            var w1 = window.open("","","width="+width+", height="+height+", resizable=no, scrollbars=no, status=no");
			w1.document.write("<html><head></head><body style='padding:0pt'></body></html>");
            w1.document.body.innerHTML= ("<div align='center'><img src='"+src+"'/></div>");
        }
function openFlash (_width, _height,src) {
 var w1;
width=20+_width;
height=20+_height;
if(flashinstalled==2)
{
            w1 = window.open("","","width="+width+", height="+height+", resizable=no, scrollbars=no, status=no");
			w1.document.write("<html><head></head><body style='padding:0pt; background: black'></body></html>");
            w1.document.body.innerHTML=("<div align='center'><embed width="+_width+" height="+_height+" align='middle' src="+src+" quality='high' wmode='transparent' bgcolor='#ffffff' name='mov04' allowscriptaccess='sameDomain' allowfullscreen='false' type='application/x-shockwave-flash' pluginspage='http://www.macromedia.com/go/getflashplayer'></embed></div>");
}
else
{
	        w1 = window.open("flashWindow.html","","width="+width+", height="+height+", resizable=no, scrollbars=no, status=no");
			w1.document.write("<html><head></head><body style='padding:0pt; background: black'></body></html>");
            w1.document.body.innerHTML= ("<div align='center' style='color: white'>Извините, для просмотра сайта вам необходим flash плеер не менее 6 версии, но у Вас он отсутсвует (либо обнаружена устаревшая версия).<br /><a href='http://www.macromedia.com/go/getflash/' target='_blank'>Обновить Flash player</a></div>");

}
}
