// JavaScript Document

function ShowFlashMovie(height, url){			
	document.write('<object classid=\"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000\" codebase=\"http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,14,0\" width=\"368\" height=\"' + height + '\" id=\"homepageflash\" border=\"0\">\n');
  	document.write('<param name=\"src\" value=\"'+url+'\"/>\n');    
	document.write('<param name=\"wmode\" value=\"transparent\"/>\n');
	document.write('<param name=\"quality\" value=\"high\"/>\n');
  	document.write('<!--[if !IE]>--> \n');
  	document.write('<object type=\"application/x-shockwave-flash\" data=\"'+url+'\" width=\"368\" height=\"'+height+'\">\n');
  	document.write('<!--<![endif]-->\n');
	document.write('<p>\n');
	document.write('<strong>No Flash plugin detected!<br />Flash Player 7 or above is required.<br/></strong>\n');
	document.write('</p>\n');
	document.write('<p><a href=\"http://www.adobe.com/products/flashplayer/\" target=\"_blank\">\n');
	document.write('Download the latest Adobe Flash Player</a>.</p>\n');
  	document.write('<!--[if !IE]>-->\n');
	document.write('</object>\n');
	document.write('<!--<![endif]-->\n');
	document.write('</object>\n');
}
