// flash.js

// newFunction
function insertFlash(flashid,flashsrc,flashheight,flashwidth) {
	document.write('<OBJECT id='+flashid+' codeBase=/Include/swflash.cab#version=8,0,24,0 height='+flashheight+' width='+flashwidth+' align=middle classid=clsid:D27CDB6E-AE6D-11cf-96B8-444553540000 VIEWASTEXT>');
	document.write('<PARAM NAME="movie" VALUE="'+flashsrc+'">');
    document.write('<PARAM NAME="quality" VALUE="high">');
    document.write('<PARAM NAME="wmode" VALUE="transparent">');
    document.write('<embed src="'+flashsrc+'" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" height='+flashheight+' width='+flashwidth+' align="middle">');
    document.write('</OBJECT>');
}

function insertFlashInWindow(flashid,flashsrc,flashheight,flashwidth,targetWindow) {
	targetWindow.document.write('<OBJECT id='+flashid+' codeBase=/Include/swflash.cab#version=8,0,24,0 height='+flashheight+' width='+flashwidth+' align=middle classid=clsid:D27CDB6E-AE6D-11cf-96B8-444553540000 VIEWASTEXT>');
	targetWindow.document.write('<PARAM NAME="movie" VALUE="'+flashsrc+'">');
    targetWindow.document.write('<PARAM NAME="quality" VALUE="high">');
    targetWindow.document.write('<PARAM NAME="wmode" VALUE="transparent">');
    targetWindow.document.write('<embed src="'+flashsrc+'" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" height='+flashheight+' width='+flashwidth+' align="middle">');
    targetWindow.document.write('</OBJECT>');
}