/*

Written by Mariano S. Tanenglian, Jr. for Brandon Grossutti of Wolverton Securities.
Copyright © 2002. www.childoftheworld.com

*/
			function isMacPlatform(){
			
				var macns = navigator.platform;
	
					if (macns.indexOf("Mac") != -1){
						return true;
					} else {
						return false;
					}//end if	
			
			}//end detect macintosh 