var w;
var colors = "nav=b6ce61&bg=e8efcd"; // button, comments, toolbar

function openGOSWF(pSGF, pH){
	if (pH == null) pH = 600;
	var pW = pH*4/3; // 800;
	var lX = (screen.width - pW)/2;
  	var lY = (screen.height - pW)/2;
	w = window.open("", "newwin", "height=" + pH + ", width=" + pW + ", top=" + lY + ",left=" + lX +  ", status=yes, toolbar=no, menubar=no, scrollbars=no, resizable=yes, location=no, directories=no");
	w.document.write("<html xmlns='http://www.w3.org/1999/xhtml' xml:lang='en' lang='en'><head>\n");
	w.document.write("<meta http-equiv='Content-Type' content='text/html; charset=UTF-8' />\n");
	w.document.write("<title>" + pSGF + "</title>\n");
	w.document.write("</head><body bgcolor='#e8efcd' marginWidth='0' marginHeight='0' leftMargin='0' topMargin='0'><center>\n");
	w.document.write("<object classid='clsid:d27cdb6e-ae6d-11cf-96b8-444553540000' codebase='http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0' width='100%' height='100%' id='goswf' align='middle'>\n");
	
	w.document.write("<param name='movie' value='http://cmgo.maklom.com/goswf.swf' /><param name='quality' value='high' /><param name='bgcolor' value='#FFFFFF' />\n");
	w.document.write("<param name='flashVars' value='" + colors + "&url=" + pSGF + "' />\n");
	w.document.write("<embed src='http://cmgo.maklom.com/goswf.swf' flashVars='" + colors + "&url=" + pSGF + "' quality='high' bgcolor='#FFFFFF' width='100%' height='100%' name='goswf' align='middle' type='application/x-shockwave-flash' pluginspage='http://www.macromedia.com/go/getflashplayer' />\n");
	w.document.write("</object></center></body></html>");
	w.document.close();
	
	w.onFocus = swfFocus;
	w.focus();
}

function swfFocus(){
	w.document.goswf.focus();
}