function show_flash (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=7,0,0,0' width='" + w + "' height='" + h + "' id='" + new Date() + "' align='middle'>");
	document.write ("<param name='allowScriptAccess' value='sameDomain' />");
	document.write ("<param name='movie' value='" + file + "' />");
	document.write ("<param name='quality' value='best' />");
	document.write ("<param name='wmode' value='transparent' />");
	document.write ("<param name='bgcolor' value='#ffffff' />");
	document.write ("<embed src='" + file + "' quality='best' wmode='transparent' bgcolor='#ffffff' width='" + w + "' height='" + h + "' name='gallery' align='middle' allowScriptAccess='sameDomain' type='application/x-shockwave-flash' pluginspage='http://www.macromedia.com/go/getflashplayer' />");
	document.write ("</object>");
}


function NewWindow(url, myname, w, h, scroll) 
	{
	var winl = (screen.width - w) / 2;
	var wint = (screen.height - h) / 2;
	winprops = 'height='+h+',width='+w+',top='+wint+',left='+winl+',scrollbars='+scroll+',resizable'
	win = window.open(url, myname, winprops)
	if (parseInt(navigator.appVersion) >= 4) 
	{ 
	win.window.focus(); 
		}
	}
