function flash(path,h,bg) {
	document.write('<object type="application/x-shockwave-flash" data="'+path+'" width="100%" height="'+h+'" id="swf" align="">');
 	document.write('<param name="movie" value="'+path+'" />');
 	document.write('<param name="quality" value="high" />');
	document.write('<param name="bgcolor" value="'+bg+'" />');
 	document.write('<param name="swliveconnect" value="true" />');
 	document.write('<param name="menu" value="false" /> ');
 	document.write('<param name="allowScriptAccess" value="always" />');		
	document.write('<'+'/object>');  	
}
function sizeFlash(h){
	if(document.getElementById("swf")){           	 
        var myElement = document.getElementById("swf");      	               
        myElement.height = h;
    }
    if(document.embeds[0]){
        var myElement =document.embeds[0];
        myElement.height = h;
    }
}
