
function openWindow(url)
{
	var loadWindow = this.window.open(url,"","scrollbars=yes,menubar=no,height=500,width=736,resizable=no,toolbar=no,location=no,status=no"); 
}

function openVideoWindow(url)
{
	var loadWindow = this.window.open(url,"","scrollbars=yes,menubar=no,height=550,width=516,resizable=no,toolbar=no,location=no,status=no"); 
}

function openImageWindow(url)
{
	var loadWindow = this.window.open(url,"","scrollbars=yes,menubar=no,height=670,width=615,resizable=no,toolbar=no,location=no,status=no"); 
	//var loadWindow = this.window.open(url,"","scrollbars=yes,menubar=no,height=675,width=620,resizable=no,toolbar=no,location=no,status=no"); 
}

function Top10Mouseover(oObject)
{
	//var id = oObject.id;
	//alert("This object's ID attribute is set to \"" + id + "\"."); 
	
	//var len = id.length;
	//var index;
	
	//var oImage;
	//var newSrc = "/NowPlaying/images/cd17.gif";
	
	//index = id.substr(10, len-10);
	//oImage = document.getElementById("top10Image"+index);
	//oImage.src = "/NowPlaying/images/cd17.gif";
	
	//for ( var i=1; i < 11; i++ ) {	
	//	oImage = document.getElementById("top10Image"+i);	
	//	oImage.src = newSrc
	//}
	
	oObject.style.color = "red";
}

function Top10Mouseout(oObject)
{
	//var id = oObject.id;
	//var len = id.length;	
	//var index;
	
	//var oImage;
	//var newSrc = "/NowPlaying/images/cd1.gif";
		
	//index = id.substr(10, len-10);
	//oImage = document.getElementById("top10Image"+index);
	//oImage.src = "/NowPlaying/images/cd1.gif";
	
	//for ( var i=1; i < 11; i++ ) {	
	//	oImage = document.getElementById("top10Image"+i);	
	//	oImage.src = newSrc
	//}
	
	oObject.style.color = "";	
}
