
//document.cookie = "hsrc=; expires=Sat, 01-Jan-1999 00:00:00 GMT;"
//document.cookie = "hsrc=" + escape(ref)+"; path=/;"

function launchclip(uid,template,channel,title,width,height,custom,scrollbar) {
var ref = window.location.href;


if(ref.indexOf("?") != -1) {
var qloc = ref.indexOf("?")
ref = ref.substring(0,qloc)
}

var	templatetype="popup";
	
if (channel=="") 
 channel=0;
if (!width)
	width=400;
if (!height)
	height=600;
if (!channel)
	channel=0
if (!title)
	title=0
if (!custom)
	custom='0'
if (scrollbar!=0)
	scrollbar=1
		
if (!uid){
	alert("Sorry, invalid parameters specified. Cannot load clip.")
	return
	}
else
{
newloc="http://www.videodome.com/mm4/templates/viewer.asp?uid="+uid+"&templateid="+template+"&channel="+channel+"&id="+title+"&templatetype="+templatetype+"&customid="+custom+"&hsrc="+ref
window.open(newloc,"popup","width="+width+",height="+height+",location=no,toolbar=no,menubar=no,scrollbars="+scrollbar)
}
}