//------------------------------------------------------------------------------------------
//		Real Pop Up Window

	var mediaPopUp = "";
	
	function showRMPopUp(winURL) {
	
		var x = 165, y = 141;
			
		if (document.all || document.getElementById) {
			var xMax = screen.width, yMax = screen.height;
		} else {
			if (document.layers) {
				var xMax = window.outerWidth, yMax = window.outerHeight;
			 } else {
				var x = xMax = 640, y = yMax = 480;
			}
		}
		
		var xOffset = (xMax - x)/2, yOffset = (yMax - y)/2;
		
		if (mediaPopUp) mediaPopUp.close();
		mediaPopUp = window.open("http://www.ruggedjams.com/_content/_player/rmplayer.php?clip="+winURL,"playerPopUp","width=" + x + ",height=" + y + ",screenX=" + xOffset + ",screenY=" + yOffset  +",top=" + yOffset + ",left=" + xOffset + ",resizable=0,scrollbars=0,status=0,toolbar=0,menubar=0,directories=0,location=0");
		mediaPopUp.focus();
	}
	
	function showWMAPopUp(winURL) {
	
		var x = 280, y = 99;
			
		if (document.all || document.getElementById) {
			var xMax = screen.width, yMax = screen.height;
		} else {
			if (document.layers) {
				var xMax = window.outerWidth, yMax = window.outerHeight;
			 } else {
				var x = xMax = 640, y = yMax = 480;
			}
		}
		
		var xOffset = (xMax - x)/2, yOffset = (yMax - y)/2;
		
		if (mediaPopUp) mediaPopUp.close();
		mediaPopUp = window.open("http://www.ruggedjams.com/_content/_player/wmplayer.php?clip="+winURL,"playerPopUp","width=" + x + ",height=" + y + ",screenX=" + xOffset + ",screenY=" + yOffset  +",top=" + yOffset + ",left=" + xOffset + ",resizable=0,scrollbars=0,status=0,toolbar=0,menubar=0,directories=0,location=0");
		mediaPopUp.focus();
	}
	
	function showTop20PopUp(uri, info, num) {
	
		var x = 280, y = 99;
			
		if (document.all || document.getElementById) {
			var xMax = screen.width, yMax = screen.height;
		} else {
			if (document.layers) {
				var xMax = window.outerWidth, yMax = window.outerHeight;
			 } else {
				var x = xMax = 640, y = yMax = 480;
			}
		}
		
		var xOffset = (xMax - x)/2, yOffset = (yMax - y)/2;
		
		if (mediaPopUp) mediaPopUp.close();
		mediaPopUp = window.open("http://www.ruggedjams.com/_content/_player/chartPlayer.php?uri="+uri+"&info="+info+"&num="+num,"playerPopUp","width=" + x + ",height=" + y + ",screenX=" + xOffset + ",screenY=" + yOffset  +",top=" + yOffset + ",left=" + xOffset + ",resizable=0,scrollbars=0,status=0,toolbar=0,menubar=0,directories=0,location=0");
		mediaPopUp.focus();
	}
	
	function showTrackListPopUp(uri) {
	
		var x = 350, y = 200;
			
		if (document.all || document.getElementById) {
			var xMax = screen.width, yMax = screen.height;
		} else {
			if (document.layers) {
				var xMax = window.outerWidth, yMax = window.outerHeight;
			 } else {
				var x = xMax = 640, y = yMax = 480;
			}
		}
		
		var xOffset = (xMax - x)/2, yOffset = (yMax - y)/2;
		
		window.open("http://www.ruggedjams.com/trackList.php?trackList="+uri,"trackList","width=" + x + ",height=" + y + ",screenX=" + xOffset + ",screenY=" + yOffset  +",top=" + yOffset + ",left=" + xOffset + ",resizable=1,scrollbars=1,status=0,toolbar=0,menubar=0,directories=0,location=0");
	}

//
//------------------------------------------------------------------------------------------
