if(window.opener){
	parentWindow=window.opener.name;
	//if(parentWindow !="vh1" && parentWindow !="myFlash" && parentWindow!=null) this.location.replace("http://www.vh1.com");
	//if(parentWindow==null) this.location.replace("/");
	}
else {
	//this.location.replace("/")
}
if(document.getElementById || document.all){
	//IE 5.+
	document.oncontextmenu =
		function(){
			return false;
		};
	document.onkeydown =
		function(){
			if((window.event.keyCode == 78 && window.event.ctrlKey == true) || window.event.keyCode == 93){
				window.event.keyCode = 0;
				window.event.cancelBubble = true;
				window.event.returnValue = false;
				return false;
			}
		};
}
else if(document.layers){
	//NS 4.x
	document.captureEvents(Event.MOUSEDOWN);
	document.onmousedown =
		function(evt){
			if(evt.which == 3)
				return false;
		};
}