function flash_object(url,value,width,height) { 
 
 document.write('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="https://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=5,0,0,0" width="'+width+'" height="'+height+'">');
 document.write('<param name=movie value="'+url+value+'"');
 document.write('<param name="wmode" value="transparent">');
 document.write('<param name="wmode" value="transparent">');
 document.write('<param name=quality value=high>');
 document.write('<param name=menu value="false">');
 document.write('<embed src="'+url+value+'" quality=high pluginspage="https://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash" type="application/x-shockwave-flash" width="'+width+'" height="'+height+'">');
 document.write('<param name="Stage.showMenu" value="false">');
 document.write('</embed> ');
 document.write('</object>');

}

function bluring(){ 
if(event.srcElement.tagName=="A"||event.srcElement.tagName=="IMG") document.body.focus(); 
} 
document.onfocusin=bluring; 

function winOpen(url, name, scroll, resize) {
	if(url) window.open(url, name, 'width=100,height=100,scrollbars='+scroll+',resizable='+resize);
}
function activeObj(id) {
	document.write(document.getElementById(id).value); 
}

theObjects = document.getElementsByTagName("object"); 
for (var i = 0; i < theObjects.length; i++) { 
theObjects[i].outerHTML = theObjects[i].outerHTML; 
}
