
function NewWindow(mypage, myname, w, h, scroll) {
var winl = (screen.width - w) / 2;
var wint = (screen.height - h) / 2;
winprops = 'height='+h+',width='+w+',top='+wint+',left='+winl+',scrollbars='+scroll+',resizable'
win = window.open(mypage, myname, winprops)
if (parseInt(navigator.appVersion) >= 4) { win.window.focus(); }
}

bName = navigator.appName;
bVer = parseInt(navigator.appVersion);
if (bName == "Netscape" && bVer <= 4.9) br = "nets";
else if (bName == "Microsoft Internet Explorer") br = "msie";
else br = "msie";
       
if (br == "nets") {
	document.write('<link rel="stylesheet" href="/main/styles/rcmartin_main_nets.css" type="text/css">');
}
	else if (br == "msie") {
	document.write('<link rel="stylesheet" href="/main/styles/rcmartin_main_ie.css" type="text/css">');
}
       
