function popup(url,wdw,w,h,s) {
	if (s==1){w+=16}
	var winleft=(screen.width - w)/2;
	var wintop=(screen.height - h)/2;
	winPop=window.open(url, wdw, 'width='+w+',height='+h+',left='+winleft+',top='+wintop+',screenX=0,screenY=0,directories=0,location=0,menubar=0,scrollbars='+s+',status=0,toolbar=0,resizable=0');
	winPop.focus();
}

function writeFlash($file, $w, $h) {
	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="'+$w+'" height="'+$h+'">');
	document.write('<param name="allowScriptAccess" value="sameDomain" /><param name="menu" value="false" />');
	document.write('<param name="movie" value="'+$file+'" />');
	document.write('<embed swLiveConnect="true" src="'+$file+'" menu="false" quality="high" width="'+$w+'" height="'+$h+'" allowScriptAccess="sameDomain" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" />');
	document.write('</object>');
}