//Collection of house keeping Java Script functions.//Developed for Z-omo: May 3, 2002.//Function to determine browser type and load appropriate//Cascading Style Sheet.function CSS_load(){//Define variables.	var brwsrType=navigator.appName;	var cssFile;//Set CSS file name based on browser type.	switch(brwsrType){		case "Microsoft Internet Explorer":			cssFile="ie.css";//			document.write('IE');		break;		case "Netscape":			cssFile="nv.css"//			document.write('NV');		break;		default:			cssFile="";		break;	}	//end case switch(brwsrType)//Write to HTML page: link to CSS file.//Following is temporary code for testing only [Local ref].//document.write('<LINK HREF="../../styles/'+cssFile+'" rel="styleSheet" type="text/css">');// following is actual required code. 	document.write('<LINK HREF="http://www.bourgein.com/styles/'+cssFile+'" rel="styleSheet" type="text/css">');}	//end function CSS_load()//Function to get and write web site keywords to target html document.function keywrd_write(){//Assign variables.	var keywrdString//Write to HTML page Meta tag statement.	document.write('<meta name="keywords" content="'+keywrdString+'">');}	//end function keywrd_write()