function openvideo(videolink, videotitle, source) { 

if (source == 'link') {
	newwin = window.open(videolink,'wind30');
} else {
	videodetail="videodetail.asp?VL=" + videolink + "&VT=" + videotitle + "&SR=" + source;
	newwin = window.open(videodetail,'wind33','width=535,height=590,dependent=yes,resizable=yes,alwaysRaised=yes,left=100,top=10');
	newwin.focus();
}
}
//-->

<!--
function drawvideo(videolink, videotitle, source) 
    { 
if (source == 'link') {
	;
} else {

	if (source == "google") {
	document.write("<embed FlashVars='autoPlay=true' style='width:425px; height:350px;' id='VideoPlayback' type='application/x-shockwave-flash' src='"+videolink+"'> </embed>");
	}

	if (source == 'youtube') {
	document.write("<object width='425' height='350'><param name='movie' value='"+videolink+"'></param><param name='wmode' value='transparent'></param><embed src='"+videolink+"' type='application/x-shockwave-flash' wmode='transparent' width='425' height='350'></embed></object>");
	}

	if (source == 'metacafe') {
	document.write("<embed FlashVars='autoPlay=true' style='width:400px; height:300px;' id='VideoPlayback' type='application/x-shockwave-flash' src='"+videolink+"'> </embed>");
	}

	if (source == 'expertvillage') {
	document.write("<embed src='"+videolink+"' type='application/x-shockwave-flash' wmode='transparent' width='320' height='266'></embed>");
	}


}
}

