function GetOS(){ 
 var os = "";  
	var agent = navigator.userAgent.toLowerCase();

// 
//  Just check platform    
// 

	os = "unix";

	if (agent.indexOf("mac") != -1) {    
		os = "mac";  
}  
	if ((agent.indexOf("windows") != -1) || (agent.indexOf("win9") != -1)) {   
		os = "windows";  
}

// document.writeln( "<pre>" ) ; 
// document.writeln( "Agent=", agent) ;  
// document.writeln( "OS=", os ) ;  
// document.writeln( "</pre>" ) ;
//
	return ( os ) ;

} // end GetOS 