///*ver:0.4*///


function showhide(id){
//	var imgObj = (id + "");

	if(document.getElementById){
		if(document.getElementById(id).style.display == "none"){
			document.getElementById(id).style.display = "block";
		} else {
			document.getElementById(id).style.display = "none";
		}
	}
}

function showvideo(v){
	var ref = '<div class="video"><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0" width="360" height="240" id="' + v + '" align="middle"><param name="allowScriptAccess" value="sameDomain" /><param name="movie" value="../video/' + v + '.swf" /><param name="quality" value="high" /><param name="bgcolor" value="#000000" /><embed src="../video/' + v + '.swf" quality="high" bgcolor="#000000" width="360" height="240" name="' + v + '" align="middle" allowScriptAccess="sameDomain" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" /></object></div>';
	var id = 'picture';
	document.getElementById(id).innerHTML=ref;
}

function OpenWin(fileN,mado) {
window.open(fileN,mado,"toolbar=0,menubar=0,location=0,directories=0,status=1,resizable=1,width=640,height=480,alwaysRaised");
}

