/*
if(window.opener){
	parentWindow=window.opener.name;
	if(parentWindow !="mtv" && parentWindow !="myFlash" && parentWindow !="mtv2_affiliates" && parentWindow!=null)  {  
		//this.location.replace("/");
	}
	}
else {
	this.location.replace("/")
}
*/
if (document.domain.indexOf("mtv.com" )>=0) {
	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;
			};
	}
}