// Routine to detect safari/chrome to redirect
{
var agt=navigator.userAgent.toLowerCase(); 

if (agt.indexOf("safari") != -1) 
	{ 
        window.location='sindex.html'; 
	} 
}
