	document.write('<link rel="stylesheet"href="stylesheet.css" type="text/css" />');

	if (currentBrowser == "MSIEOld")
		{
			//load ie 6 friendly stylesheet
			document.write('<link rel="stylesheet" href="stylesheet-ie-old.css" type="text/css">');
		}
		
/* This portion of code is used only if you need to distinguish between ie7+ and other current browsers */
		
	else if (currentBrowser == "MSIENew")
		{
			//load ie 7+ friendly stylesheets
			document.write('<link rel="stylesheet" href="stylesheet-ie-new.css" type="text/css">');
		}

		
	else
		{
			//load W3c Compliant Browser friendly stylesheets
			document.write('<link rel="stylesheet" href="stylesheet-compliant.css" type="text/css">');
		}