﻿// JavaScript Document

//index menu
function menu(id){
	for(s=1;s<=7;s++){
		try{
			if(id==s){
				document.getElementById("m"+s).className='mtd1';
			}
			else{
				document.getElementById("m"+s).className='mtd2';
			}
		}catch(e){}
	}
}

//index Pro menu
function pro(id){
	for(s=1;s<=4;s++){
		try{
			if(id==s){
				document.getElementById("pm"+s).className='itd_1';
				document.getElementById("pli_"+s).style.display='block';
			}
			else{
				document.getElementById("pm"+s).className='itd_2';
				document.getElementById("pli_"+s).style.display='none';
			}
		}catch(e){}
	}
}

//Flash
function flash(src,w,h){
document.write('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0" width="'+w+'" height="'+h+'">');
document.write('<param name="movie" value="'+src+'"><param name="quality" value="high"><param name="menu" value="false">');
document.write('<param name="wmode" value="transparent">');
document.write('<embed src="'+src+'" width="'+w+'" height="'+h+'" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" menu="false" wmode="transparent"></embed>');
document.write(' </object>');
}
