function msover(img,ref) {

	// we only want to roll off this if its not in the selected state
	myImage = document.images[img].src;
	re = /_sel.gif/;

	if ( ! re.test( myImage ) ) {
		document.images[img].src = ref;
	}

}
	
function msout(img,ref) {

	// we only want to roll off this if its not in the selected state

	myImage = document.images[img].src;

	re = /_sel.gif/;

	if ( ! re.test( myImage ) ) {
		document.images[img].src = ref;
	}


}




function openWindow( url, w, h, name ) {

	optionStr = "scrollbars=no,location=no,toolbar=no,width=" + w + ",height=" + h;
    if (name != "") {
    	helpWindow = window.open( url, name, optionStr );
    } else {
    	helpWindow = window.open( url, "content", optionStr );
    }
}




function gotoURL( url ) {
	window.opener.location.href = url;
	self.close();
}



function gotoURLNoClose( url ) {

	window.opener.location.href = url;
}


function parentGotoURL( url ) {

	parent.window.opener.location.href = url;

	// close window - reactivated per darleen's request
	parent.window.close();

	top.opener.focus();

}



function openWindow2( url, w, h ) {

	optionStr = "scrollbars=yes,location=no,toolbar=yes,width=" + w + ",height=" + h;
	helpWindow = window.open( url, "content", optionStr );

}


function openWindow3( url, w, h ) {

	optionStr = "scrollbars=no,location=no,toolbar=no,width=" + w + ",height=" + h;
	helpWindow = window.open( url, "content", optionStr );

}


function openGallery( url, w, h ) {

	optionStr  = "toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,width=" + w + ",height=" + h;
	helpWindow = window.open( url, "content", optionStr );

}

// edited below brian kane 10/5/2001
function openCeltic( ) {

	var popupURL = "http://198.147.175.249:897/cgi-bin/player.cgi?celtic";
	popup = window.open(popupURL,'','toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=0,width=450,height=416');


}

function openCeltic2( ) {
// edited below brian kane 10/10/2001
	var popupURL = "http://198.147.175.249:897/cgi-bin/player.cgi?celtic";
	popup = window.open(popupURL,'','toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=0,width=275,height=416');

}


function openOldCeltic( ) {
// edited below brian kane 10/10/2001
	var popupURL = "http://198.147.175.249:897/cgi-bin/player.cgi?celtic_last_week";
	popup = window.open(popupURL,'','toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=0,width=275,height=416');

}

// edited below brian kane 10/5/2001
function openJazz( ) {

	var popupURL = "http://198.147.175.249:897/cgi-bin/player.cgi?jazz";
	popup = window.open(popupURL,'','toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=0,width=275,height=362');


}

// edited below brian kane 10/5/2001
function openClassical( ) {

	var popupURL = "http://198.147.175.249:897/cgi-bin/player.cgi?classical";
	popup = window.open(popupURL,'','toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=0,width=275,height=362');


}
