/*=================Copyright Stuff====================

Blake Donley Designs Javascript Template
Copyright 2002 Blake Donley Designs
info@blakedonley.com
http://www.blakedonley.com

This JS file has been created exclusively for:
Minneapolis International Hostel

================================================*/


//
// Sniff browser type and load appropriate style sheet.
//

var browserType = window.navigator.appName;

switch (browserType)
	{
	case "Microsoft Internet Explorer": 
		document.write('<link rel="stylesheet" type="text/css" href="_css/layoutIE.css" />');
		break;

	case "Netscape":
		if (document.layers)
			{
			alert("This website is designed for:\n\n--> Internet Explorer 4.x and up\n--> Netscape 6.x and up.\n\nYou are using Netscape 4.x or below, and as a result this site will not display properly.\n\nTo download the latset version of Netscape, visit: http://home.netscape.com/computing/download/index.html\n\nTo download the latset version of Internet Explorer, visit: http://www.microsoft.com/windows/ie/default.asp");
			document.write('<link rel="stylesheet" type="text/css" href="_css/layoutNetscapeOld.css" />');
			}
		else
			{
			document.write('<link rel="stylesheet" type="text/css" href="_css/layoutNetscape.css" />');
			}
		break;

	default:
		document.write('<link rel="stylesheet" type="text/css" href="_css/layoutIE.css" />');
		break;
	}
