// JavaScript Document

//OS sniffer//

var opera = navigator.HTTP_X_OPERAMINI_PHONE_UA.toLowerCase();
alert("opera test = " + opera);

var agent=navigator.userAgent.toLowerCase();
//alert(agent);
///testing--delete
if((agent.match(/iphone/i)) || (agent.match(/ipod/i))) {
	location.replace("wizard_iphone.htm");
	} else if (agent.match(/android/i)) {
	location.replace("wizard_dl_android.htm");
} else if (agent.match(/blackberry/i)) {
	location.replace("wizard_dl_blackberry.htm");
} else if (agent.match(/palm/i)) {
	location.replace("wizard_dl_palm.htm");
} else if (agent.match(/windows/i)) {
	if (agent.match(/msie3/i) || (agent.match(/msie 3/i))) { 
		location.replace("wizard_dl_ppc.htm"); 
	} else {
		location.replace("wizard_dl_winmo.htm");
	}
} else if (agent.match(/nokia/i)) {
	getDevModel("nokia"); //matches model and sends user to dl page
} else if (agent.match(/samsung/i)) {
	getDevModel("samsung");
} else if (agent.match(/sonyericsson/i)) {
	location.replace("wizard_dl_symbian_60_r1_r2_uiq.htm");
}

