function playVedio(vedioUrl, vedioTitle){
	var objP = document.all.player;
	if(objP == null || objP == undefined){};
	else stop();
	var mxh = new Array("","");
	mxh[0] = vedioUrl;
	mxh[1] = vedioTitle;
	var dialogparams;
	if(isIE7()) 
		dialogparams = "dialogWidth:360px;dialogHeight:300px;center:yes;resizable:no;scroll:no;status:no;help:no";
	else 
		dialogparams = "dialogWidth:380px;dialogHeight:350px;center:yes;resizable:no;scroll:no;status:no;help:no";
		
	window.showModalDialog("/VedioPlayer/VodPlay.html",mxh,dialogparams);
}

function isIE7(){
	if(navigator.appName.indexOf("Internet Explorer") != -1){   
    	var tmp = navigator.appVersion.toString();   
        IE = parseFloat(tmp.substring(tmp.indexOf("MSIE")+4,tmp.length));
		if(IE >= 7) return true;
	}
	return false; 
}   

