
function getSwf(src,w,h,wmode){
	html = '';
	html += '<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+'">';
	html += '<param name="movie" value="'+src+'">';
	html += '<param name="quality" value="high">';
    html += '<param name="wmode" value="'+wmode+'">';
	html += '<param name="swliveconnect" value="'+wmode+'">';
	html += '<embed src="'+src+'" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" swliveconnect="true" type="application/x-shockwave-flash" width="'+w+'" height="'+h+'" wmode="'+wmode+'"></embed></object>';

	document.write(html);
}


function center_window(url,w,h,tb,st,di,mb,sb,re)
{
 var position ="width="+w+",height="+h+",left=" + ((screen.width-w)/2) + ",top=" + ((screen.height-h)/2) + ",toolbar="+tb+",directories="+di+",status="+st+",menubar="+mb+",scrollbars="+sb+",resizable="+re+"";
 window.open( url, 'popup', position);
}