/* open new centered window with scrolling ability */
/* USAGE: javascript:openWin('filename.html','windowname', width, height); */


function openWin(url,name,popW,popH) {
        version = navigator.appVersion;
	var w = 800, h = 600;

	if (document.all || document.layers) {
		w = screen.availWidth;
		h = screen.availHeight;
	}
	var leftPos = (w-popW)/2, topPos = (h-popH)/2;
	window.open(url,name,'width=' + popW + ',height=' + popH + ',scrollbars=yes,toolbar=no,status=yes,resizable=no,top=' + topPos + ',left=' + leftPos);void(0);
        window.status = "";
}




/* open new centered window without scrolling ability */
/* USAGE: javascript:openPop('filename.html','windowname', width, height); */


function openPop(url,name,popW,popH) {
        version = navigator.appVersion;
	var w = 800, h = 600;

	if (document.all || document.layers) {
		w = screen.availWidth;
		h = screen.availHeight;
	}
	var leftPos = (w-popW)/2, topPos = (h-popH)/2;
	window.open(url,name,'width=' + popW + ',height=' + popH + ',scrollbars=no,toolbar=no,status=yes,resizable=no,top=' + topPos + ',left=' + leftPos);void(0);
}


/* DREAMWORKS PROVIDED POP_UP CODE */
 function openNewWindow(theURL,winName,features) {
   window.open(theURL,winName,features)
 }


     if (document.images) {
        document.newsOn = new Image();           // Active images
        document.newsOn.src = "/_img/nav/news_on.gif";
        document.tourOn = new Image();
        document.tourOn.src = "/_img/nav/tour_on.gif";
        document.mediaOn = new Image();
        document.mediaOn.src = "/_img/nav/media_on.gif";
        document.emailOn = new Image();
        document.emailOn.src = "/_img/nav/email_on.gif";
        document.bboardOn = new Image();
        document.bboardOn.src = "/_img/nav/bboard_on.gif";
        document.storeOn = new Image();
        document.storeOn.src = "/_img/nav/store_on.gif";
        document.homeOn = new Image();
        document.homeOn.src = "/_img/nav/home_on.gif";
        document.aboutOn = new Image();
        document.aboutOn.src = "/_img/nav/about_on.gif";
	document.joinOn = new Image();
	document.joinOn.src = "/_img/mlist_join_on.gif";
        document.discogOn = new Image();
	document.discogOn.src = "/_img/nav/discog_on.gif";

        document.newsOff = new Image();           // Inactive images
        document.newsOff.src = "/_img/nav/news_off.gif";
        document.tourOff = new Image();
        document.tourOff.src = "/_img/nav/tour_off.gif";
        document.mediaOff = new Image();
        document.mediaOff.src = "/_img/nav/media_off.gif";
        document.emailOff = new Image();
        document.emailOff.src = "/_img/nav/email_off.gif";
        document.bboardOff = new Image();
        document.bboardOff.src = "/_img/nav/bboard_off.gif";
        document.storeOff = new Image();
        document.storeOff.src = "/_img/nav/store_off.gif";
        document.homeOff = new Image();
        document.homeOff.src = "/_img/nav/home_off.gif";
        document.aboutOff = new Image();
        document.aboutOff.src = "/_img/nav/about_off.gif";
        document.discogOff = new Image();
	document.discogOff.src = "/_img/nav/discog_off.gif";

	document.joinOff = new Image();
	document.joinOff.src = "/_img/mlist_join_off.gif";
        }