function loadFlash(swf,width,height,qs,bgcolor) {
    //workaround for Microsoft 'feature' of making you click on Flash to activate it
    //pass in the swf file you're trying to load and the associated query string to pass into Flash
    //also pass in the expected height and width of the movie
    //if no bgcolor set it to blue
    if (bgcolor == '' || bgcolor == undefined) bgcolor='#FFFFFF';
    

	document.writeln('<object classid="clsid:D27CDB6E-AE6D-11CF-96B8-444553540000" id="obj1" codebase="https://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0" border="0" width="250" height="400">');
	document.writeln('<param name="movie" value="images/intro_home.swf">');
	document.writeln('<param name="quality" value="High">');
	document.writeln('<param name="menu" value="false">');
	document.writeln('<embed src="images/intro_home.swf" pluginspage="https://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" name="obj1" width="250" height="400" quality="High"></object>');
}