function flashWrite(flashname,flashwidth,flasheight) {
	var flashvars = false;
	var params = {}
	var attributes = {};

	params.wmode = "opaque";
	params.quality = "high";
	params.menu = "false";
	
	swfobject.embedSWF("/flash/"+flashname, "altCont", flashwidth, flasheight, "9", "/static/js/expressInstall.swf", flashvars, params, attributes);
	
}

function showImage(imageid,imageurl) {
	document.getElementById(imageid).src = imageurl;
}


	/*
	document.write('<OBJECT classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=5,0,0,0" WIDTH='+flashwidth+' HEIGHT='+flasheight+' >');
	document.write('<PARAM NAME="movie" VALUE="/flash/'+flashname+'">');
	document.write('<PARAM NAME="quality" VALUE="high">');
	document.write('<PARAM NAME="wmode" VALUE="opaque">');
	document.write('<EMBED src="/flash/'+flashname+'" wmode="opaque" quality="high" width="'+flashwidth+'" HEIGHT="'+flasheight+'" type="application/x-shockwave-flash" PLUGINSPAGE="http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash"></EMBED>');
	document.write('</OBJECT>');
	*/
