function writeFlash(movieLocation,width,height){
  document.write('<object id="flashmast" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0" width="'+width+'" height="'+height+'"><param name="allowScriptAccess" value="sameDomain"><param name="movie" value="'+movieLocation+'"><param name="quality" value="high"><embed id="flashembed" src="'+movieLocation+'" quality="high" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" width="'+width+'" height="'+height+'"></embed></object>');
}
function submenuHandler(obj, id, img){
	tmpStatus = document.getElementById(''+id+'').style.display;
	tmpObj = document.getElementById(''+img+'');
	if(tmpStatus == 'block'){
		tmpSrc = tmpObj.src.replace('ico_menu-on','ico_menu-off');
		document.getElementById(''+id+'').style.display='none';
	}
	else{
		tmpSrc = tmpObj.src.replace('ico_menu-off','ico_menu-on');
		document.getElementById(''+id+'').style.display='block';
	}
	obj.blur();
	tmpObj.src=tmpSrc;
}
function showCurrentSubmenu(layer, id, img, subImg){
	tmpObj2 = document.getElementById(''+subImg+'');
	tmpSrc = tmpObj2.src.replace('ico_menu-off','ico_menu-on');
	if(img){
		tmpObj1 = document.getElementById(''+img+'');
		tmpObj1.src=tmpSrc;
	}
	tmpObj2.src=tmpSrc;

	if(layer){
		document.getElementById(''+layer+'').style.display='block';	
	}
	document.getElementById(''+id+'').style.display='block';
}
function writeFlashVar(movieLocation,width,height,variable){
  document.write('<object id="flashmast" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0" width="'+width+'" height="'+height+'"><param name=FlashVars value="vars='+variable+'"><param name="allowScriptAccess" value="sameDomain"><param name="movie" value="'+movieLocation+'"><param name="quality" value="high"><embed id="flashembed" src="'+movieLocation+'" FlashVars="vars='+variable+'" quality="high" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" width="'+width+'" height="'+height+'"></embed></object>');
}