
function initPage(){
			
		//alert(swfname + "?flvpath=" + flvpath);
		FlashControl.createSWFObject(
			swfname + "?flvpath=" + flvpath,
			{
				width:"318",
				height:"178",
				bgcolor:"#000000",
				quality:"high",
				align:"middle",
				salign:"tl",
				allowScriptAccess:"sameDomain",
				id:"theswf"				
			},
			"videofeature",
			{
				detectFlash:true,
				flashVersion:8,
				detectResolution:false,
				onError:errorHandler
			}
		)
		
	
	
}
function errorHandler(err,erros){
//	alert("error")
	var wrapper = document.getElementById("videofeature")
	var _html=""
//	alert(err)
	switch (err){
		case "invalidFlash":
		
			var flashdet = document.getElementById("flashdet")
			flashdet.value="no"
		//	_html+= '<img src="data/images/logo.gif" alt="" />'
		//	wrapper.innerHTML = _html
		break;
	}
}

	
