// JavaScript Document

function detectResolution(){
//	var height = screen.height;
//	var width = screen.width;
//	switch(height){
//		case 240:
//			//blackberry 8800 series
//			window.location = "bb/index.html";
//			break;
//		case 320:
//			//blackberry 9000 series
//			window.location = "bb/index.html";
//			break;
//		case 396:
//			//iphone
//			window.location = "iphone/index.php";
//			break;
//		case 800:
//			if(width == 480){
//				//Toshiba TG01
//				window.location = "tg01/TeligenV2.CAB";
//			}else{
//				//desktop
//				window.location = "desktop/index.html";
//			}
//			break;
//		default:
//			//desktop
//			window.location = "desktop/index.html";
//			break;
//	}


    switch(navigator.platform){
        case "iPhone":
			window.location = "iphone/index.html";
			break;
        case "iPod":
            window.location = "iphone/index.html";
            break;
        default:
			//desktop
			window.location = "desktop/index.html";
			break;
	}

    
    return false;
}
