function run_adflash(flash,width,height,opaque) {
    document.write("<object type=\"application/x-shockwave-flash\"");
    document.write(" data=\"img/"+flash+".swf\"");
    
    	document.write(" width=\""+width+"\" height=\""+height+"\">\n\t");
    
    
    document.write("<param name=\"movie\" value=\"img/"+flash+".swf\" />\n\t");
    document.write("<param name=\"wmode\" value=\""+opaque+"\" />\n\t");
    	
    document.write("<img src=\".jpg\" alt=\"\" usemap=\"#\" />\n");
    document.write("</object>");
}
function switchFlash() {
	document.getElementById('flash').style.display= 'none';
	document.getElementById('flash_web').style.display= 'block';
}