body {
	color: #680400;
	background-color: #FFFFFF;
	margin-left: 0px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	font-style: normal;
	font-size: large;
	font-family: "Monotype Corsiva", "Palatino Linotype", Batang;
	background-image:  url(../images/background.jpg);
}
a:link {
	font-family: "Monotype Corsiva", "Palatino Linotype", Batang;
	color: #680400;
	font-size: large;
}
a:visited {
	font-family: "Monotype Corsiva", "Palatino Linotype", Batang;
	color: #680400;
	font-size: large;
}
a:active {
	font-family: "Monotype Corsiva", "Palatino Linotype", Batang;
	font-size: large;
	color: #680400;
}
 HIDING FROM OLD BROWSERS

//POPUP WINDOW FUNCTION
function popwin(theurl,thename,thewidth,theheight,special,left,top,scrollToggle) {
				if (special==1) {
						var left=(screen.width-thewidth)/2;
						var top=(screen.height-theheight)/2;
					}
	window.open(theurl,thename,'left='+left+',top='+top+',width='+thewidth+',height='+theheight+',toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars='+scrollToggle+',resizable=0');
} 



//LAUNCH FUNCTIONS
function detectVersion() { 
	version = parseInt(navigator.appVersion);
	return version; 
} 

function detectOS() { 
	if(navigator.userAgent.indexOf('Win') == -1) {
		OS = 'Macintosh'; 
	} else { 
		OS = 'Windows'; 
	} 
	return OS; 
} 

function detectBrowser()  { 
	if(navigator.appName.indexOf('Netscape') == -1) {
		browser = 'IE'; 
	} else { 
		browser = 'Netscape';
	} 
	return browser; 
} 

function FullScreen(launchURL) {
	//Set up various adjust widths and heights for browsers
	var adjWidth; 
	var adjHeight; 
	//Mac Netscape
	if((detectOS() == 'Macintosh') && (detectBrowser() == 'Netscape')) { 
		adjWidth = 20; 
		adjHeight = 35; 
	} 
	//Mac IE
	if((detectOS() == 'Macintosh') && (detectBrowser() == 'IE')) { 
		adjWidth = 0; 
		adjHeight = 0; 
	} 
	//Windows Netscape
	if((detectOS() == 'Windows') && (detectBrowser() == 'Netscape')) { 
		adjWidth = 30; 
		adjHeight = 30; 
	} 
	//Less then version 4 browsers
	if(detectVersion() < 4) { 
		//self.location.href = 'non4browsers.php';
		self.location.href=launchURL;
	} 
	//Extra adjust for Mac IE window (10 from width and 45 from height)
	if((detectOS() == 'Macintosh') && (detectBrowser() == 'IE')) {
		var maciewindow = window.open(launchURL, 'popupwindow','fullscreen=yes');
		maciewindow.moveTo(0,0);
		maciewindow.resizeTo(screen.width - 10,screen.height - 45);
	}
	else { 
		var winWidth = screen.width - adjWidth;
		var winHeight = screen.height - adjHeight;
		var winSize = 'width=' + winWidth + ',height=' + winHeight;
		var thewindow = window.open(launchURL, 'popupwindow', winSize);
		thewindow.moveTo(0,0);
	} 
} 

//Called by the main page
function goFull(launchURL){
	//If this is Windows and IE, then just launch the window, else perform some checks
	if((detectOS() == 'Windows') && (detectBrowser() == 'IE')) {
		window.open(launchURL,'popupwindow','fullscreen=yes');
	} else { 
		FullScreen(launchURL);
	} 
} 

//Right click
var message="Function Disabled";
function clickIE() {if (document.all) {alert(message);return false;}}
function clickNS(e) {if 
(document.layers||(document.getElementById&&!document.all)) {
if (e.which==2||e.which==3) {alert(message);return false;}}}
if (document.layers) 
{document.captureEvents(Event.MOUSEDOWN);document.onmousedown=clickNS;}
else{document.onmouseup=clickNS;document.oncontextmenu=clickIE;}
document.oncontextmenu=new Function("return false")
// 
}
