function okno(url, width, height) {
var Win = window.open(url,"displayWindow",'width=' + width + ',height=' + height + ',toolbar=no,directories=no,status=no,scrollbars=no,resizable=no,menubar=no,screenX=0,screenY=0,' );
}


function insertFlashElemWH(name, w, h) {
	var path = name;
	var toWrite = '<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0" width="'+w+'" height="'+h+'" >';
	toWrite += '<param name="allowScriptAccess" value="sameDomain" />';
	toWrite += '<param name="movie" value="'+path+'" />';
	toWrite += '<param name="quality" value="autohigh">';
	toWrite += '<param name="wmode" value="transparent" >';
	toWrite += '<embed wmode="transparent" src="'+path+'" quality="high" width="'+w+'" height="'+h+'" name="baner" align="middle" allowScriptAccess="sameDomain" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" />';
	toWrite += '<'+ '/'+'object>';
	document.write(toWrite);
}
