/**
AUTHOR	:	GUGULETHU NTOMBELA
DATE	:	19 - 04 - 04
SCRIPT	:	IMAGE & STYLESHEET PATHS, AND BROWSER AND PLATFORM CHECK
WEBSITE	:	RONDEBOSCH.NET
*****************Copyright reserved:RONDEBOSCH.NET******************
**/

/**	Images path	**/
var ImagePath = '_images/';

/**	Style sheet path **/
var StyleSheetPath = '_includes/_stylesheets/';

/**	check browser and platform	**/
if ((navigator.userAgent.indexOf("Mac") != -1)){
		document.write("<link rel='stylesheet' href='" + StyleSheetPath + "rondnet_mac.css'>") 
	}
if (navigator.userAgent.indexOf('Win') != -1){
		if (navigator.appName.indexOf('Netscape') != -1) {
			document.write("<link rel='stylesheet' href='" + StyleSheetPath + "rondnet_nav.css'>")
			}
			else {document.write("<link rel='stylesheet' href='" + StyleSheetPath + "rondnet_ie.css'>")
			}
		}
else
{
	document.write("<link rel='stylesheet' href='" + StyleSheetPath + "rondnet_ie.css'>")
}

//end of Monitor.....