

function windowopen1234(url,na,si){
 window.open(url,na,si).focus();
}


inputSWF = function(id, src, bgcolor, width, height, wmode) {
	if (wmode)
	{
		document.write('<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="//fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0" width="'+width+'" height="'+height+'" id="'+id+'" align="middle"><param name="allowScriptAccess" value="sameDomain" /><param name="movie" value="'+src+'" /><param name="quality" value="high" /><param name="bgcolor" value="'+bgcolor+'" /><param name="wmode" value="transparent" />');
		document.write('<embed src="'+src+'" quality="high" bgcolor="'+bgcolor+'" width="'+width+'" height="'+height+'" name="'+id+'" align="middle" allowScriptAccess="sameDomain" type="application/x-shockwave-flash" pluginspage="//www.macromedia.com/go/getflashplayer" wmode="transparent" /></object>');
	}
	else{
		document.write('<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="//fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0" width="'+width+'" height="'+height+'" id="'+id+'" align="middle"><param name="allowScriptAccess" value="sameDomain" /><param name="movie" value="'+src+'" /><param name="quality" value="high" /><param name="bgcolor" value="'+bgcolor+'" />');
		document.write('<embed src="'+src+'" quality="high" bgcolor="'+bgcolor+'" width="'+width+'" height="'+height+'" name="'+id+'" align="middle" allowScriptAccess="sameDomain" type="application/x-shockwave-flash" pluginspage="//www.macromedia.com/go/getflashplayer" /></object>');
	}
	
};



inputMOV = function(id, src, width, height, autostart, loop, showaudiocontrols, showcontrols, showpositioncontrols, showtracker){
	document.write('<object id="'+id+'" name="MediaPlayer" classid="clsid:22D6F312-B0F6-11D0-94AB-0080C74C7E95" codebase="http://activex.microsoft.com/activex/controls/mplayer/en/nsmp2inf.cab#Version=6,4,5,715" width="'+width+'" height="'+height+'" standby="Loading Microsoft Windows Media Player components..." type="application/x-oleobject" align="center">');
	document.write('  <param name="Filename" value="'+src+'">');
	document.write('  <param name="AutoStart" value="'+autostart+'">');
	document.write('  <param name="loop" value="'+loop+'">');
	document.write('  <param name="ShowAudioControls" value="'+showaudiocontrols+'">');
	document.write('  <param name="ShowControls" value="'+showcontrols+'">');
	document.write('  <param name="ShowPositionControls" value="'+showpositioncontrols+'">');
	document.write('  <param name="ShowTracker" value="'+showtracker+'">');
	document.write('  <embed id="'+id+'" type="application/x-mplayer2" pluginspage="http://www.microsoft.com/Windows/Downloads/Contents/Products/MediaPlayer/" width="'+width+'" height="'+height+'" src="'+src+'" AutoStart="'+autostart+'" loop="'+loop+'" ShowAudioControls="'+showaudiocontrols+'" ShowControls="'+showcontrols+'" ShowPositionControls="'+showpositioncontrols+'" ShowTracker="'+showtracker+'"></embed>');
	document.write('</object>');
};