function drawFlash(flashfile, imagefile, width, height, strID, bgcolor) {
	document.write ('<div id='+strID+' style="width: '+width+'px; height: '+height+'px;">');
	document.write ('<a href="http://www.adobe.com/go/getflashplayer" target="_blank"><img src="_images/'+imagefile+'" alt="" /></a>');
	document.write ('</div>');
	
	var obj = new FlashObject(flashfile, "v5", width, height, "8", bgcolor);
	obj.addVariable("lang", "en");
	obj.addVariable("enforce", "0");
	obj.addParam("wmode", "opaque");
	obj.addParam("menu", "false");
	obj.write(strID);
}


function OpenMovie(movie, title) 
{
	//alert('movie: '+movie + ' ' + title)
	var movieWindow;
	movieWindow = window.open('app_ShowMovie.asp?v=' + movie + '&t=' + title, '_OpenMovieWindow', 'scrollbars=no,menubar=no, location=no,resize=no,width=700,height=550,left=200,top=200,status=no');
}
