//Writes correct style sheet into page
//NOTE: style_legacy.css is for ie4 and ns4 on a mac....all other browsers use style.css
var stylesheet="style.css";

if (navigator.platform.indexOf("Mac")!=-1)
{
	if (navigator.appName=="Netscape" && navigator.appVersion.charAt(0)=="4")
	{
		stylesheet="style_legacy.css";
	}
	else if (navigator.appName=="Microsoft Internet Explorer" && navigator.appVersion.indexOf("MSIE 4")!=-1)
	{
		stylesheet="style_legacy.css";
	}
}

document.write("<link rel=\"stylesheet\" type=\"text/css\" href=\"../includes/"+stylesheet+"\">");

function roll(imgOne,rollImg,rollText) {
        if (document.images) {
                document [imgOne].src = rollImg;
        }
}

//popUp Script
//usage: (#, #, 'name', 'url')
function popUpWindow (window_width, window_height, window_name, window_url)
{
	var options="width="+window_width+",height="+window_height+"";
	popupWin=window.open(window_url, window_name, options);
}


