function checkBrowserName(name){  
    var agent = navigator.userAgent.toLowerCase();  
   if (agent.indexOf(name.toLowerCase())>-1) {  
      return true;  
   }  
    return false;  
}

if(checkBrowserName('MSIE')){  } 

if(navigator.userAgent.match(/iPhone/i)){
window.location.href = "imobile/index.php";
}

if(navigator.userAgent.match(/iPod/i)){
window.location.href = "imobile/index.php";
}


else {	
	window.location.href = "manjographics.php";
}
