function browserID() {
	br = navigator.appName;
	vs = parseInt(navigator.appVersion);
	if (navigator.appVersion.indexOf("Win")) os = "win";
	if (navigator.appVersion.indexOf("Macintosh")) os = "mac";
}

function styleGen() {
	browserID();
	if (br == "Netscape") {
		if (vs > 4) {
			 document.write("<LINK REL = 'stylesheet' HREF = 'nsstyle.css'>");
		}
		else {
			document.write("<LINK REL = 'stylesheet' HREF = 'ns4style.css'>");
		}
	}
	else {
		 document.write("<LINK REL = 'stylesheet' HREF = 'iestyle.css'>");
	}
}
		
function openWin(URL,w,h) {			
	window.open(URL,null,"status=yes ,toolbar=yes,menubar= no,location=yes,width= " + w + ",height= " + h + ",resizable=yes,scrollbars=yes,left=0,top=0");
}

function openSlide(url) {	
	window.open(url,null,"status=no ,toolbar=no,menubar= no,location=no,width= 800,resizable=yes,scrollbars=yes,left=0,top=0");
}

function FrameSwitch(url) {
	parent.main.location.href = url;
}
