function ValidateVideo(sender,e){var c2vid= sender.id;c2vid = c2vid.substr(0,c2vid.lastIndexOf('_') + 1 );document.getElementById(c2vid + "lblMsg").innerHTML="";document.getElementById(c2vid + "valSummary").innerHTML="";if(e.Value!=''){var extPDFName=e.Value.substring(e.Value.lastIndexOf("\\")+1);if(extPDFName.length>150||extPDFName.lastIndexOf("'")>=0||extPDFName.lastIndexOf("&")>=0||extPDFName.lastIndexOf("=")>=0){e.IsValid=false}else{var ext=e.Value.substring(e.Value.lastIndexOf(".")+1).toLowerCase();if(ext!="avi"&&ext!="mpeg"&&ext!="3gp"&&ext!="wmv"&&ext!="mpg"&&ext!="flv"&&ext!="mp4"&&ext!="mov"&&ext!="wav"){e.IsValid=false}else{e.IsValid=true}}}else{e.IsValid=true}}function PlayVideo(swfPath,streamerPath,fullScreen,nHeight,nWidth,flvFilePath,thumbnailImage,usestreamer,title,description){var s1=new SWFObject(swfPath,'ply',nHeight,nWidth,'9','#FFFFFF');s1.addParam('allowscriptaccess','always');s1.addParam('wmode','transparent');s1.addVariable('file',flvFilePath);s1.addVariable('image',thumbnailImage);s1.addVariable('autostart','true');s1.addVariable('stretching','uniform');s1.addParam('title',title);s1.addParam('description',description);if(usestreamer=='true'){s1.addVariable('streamer',streamerPath);}s1.addParam('allowfullscreen',fullScreen);s1.write("container");return false}