// JavaScript Document
<!--
function settype()
{   
    switch (document.all.variety.value) {    
	       case "Urinalysis" :
	         var typeOptions = new Array(
				 "Product","" ,
		         "Uritest-50","ArticleShow.asp?ArticleID=19",
				 "Uritest-150", "ArticleShow.asp?ArticleID=20",
				 "Uritest-200B", "ArticleShow.asp?ArticleID=21",
				 "URIT-260","ArticleShow.asp?ArticleID=47",
			     "Uritest-300", "ArticleShow.asp?ArticleID=33",
				 "Uritest-500","ArticleShow.asp?ArticleID=34",
				 "URIT-1500","ArticleShow.asp?ArticleID=41",
				 "URIT-500C","ArticleShow.asp?ArticleID=48",
                 "Urine Reagent Strips","ArticleShow.asp?ArticleID=35",
				 "Urinalysis control","ArticleShow.asp?ArticleID=36");
			     break;
		   case "Hemanalysis" :
		     var typeOptions = new Array(
				 "Product","" ,
				 "URIT-2900", "ArticleShow.asp?ArticleID=38", 
				 "Uritest-3000", "ArticleShow.asp?ArticleID=37",
				 "URIT-3000Plus", "ArticleShow.asp?ArticleID=59",
				 "URIT-3010", "ArticleShow.asp?ArticleID=60",
				 "Urit-3100", "ArticleShow.asp?ArticleID=25",
				 "URIT-3200", "ArticleShow.asp?ArticleID=24",
			     "URIT-3300", "ArticleShow.asp?ArticleID=22",
				 "URIT-5500", "ArticleShow.asp?ArticleID=49",
			     "hematology_reagent", "ArticleShow.asp?ArticleID=46",
				 "URIT-610", "ArticleShow.asp?ArticleID=44");
				 break;
		   case "Chemistry Analysis" :
	         var typeOptions = new Array(
		         "Product","" ,
				 "URIT-910", "ArticleShow.asp?ArticleID=29",
				 "chemistry_reagent", "ArticleShow.asp?ArticleID=45",
				 "URIT-800", "ArticleShow.asp?ArticleID=26", 
				 "URIT-810", "ArticleShow.asp?ArticleID=51",
				 "URIT-870", "ArticleShow.asp?ArticleID=27",
				 "URIT-8020", "ArticleShow.asp?ArticleID=52",
				 "URIT-8020A", "ArticleShow.asp?ArticleID=62",
				 "URIT-8030", "ArticleShow.asp?ArticleID=54",
				 "URIT-8060", "ArticleShow.asp?ArticleID=55");
			     break;
			case "POCT" :
	         var typeOptions = new Array(
		         "Product","" ,
				 "URIT-12", "ArticleShow.asp?ArticleID=30",
				 "URIT-22", "ArticleShow.asp?ArticleID=57",
				 "URIT-26", "ArticleShow.asp?ArticleID=58",				 
				 "URIT-30", "ArticleShow.asp?ArticleID=50");
			     break;
			case "Immune Assay and Molecular Biology" :
	         var typeOptions = new Array(
		         "Product","" ,
				 "Immune Assay...","ArticleShow.asp?ArticleID=32",
				 "URIT-660", "ArticleShow.asp?ArticleID=42",
				 "URIT-670", "ArticleShow.asp?ArticleID=43");
			     break;
				 case "Lis" :
	         var typeOptions = new Array(
		         "Product","" ,
				 "Laboratory Information System","ArticleShow.asp?ArticleID=56");
			     break;
				 case "Patient Monitor" :
	         var typeOptions = new Array(
		         "Product","" ,
				 "URIT¨CA60B","ArticleShow.asp?ArticleID=63",
				 "URIT¨CA63A", "ArticleShow.asp?ArticleID=64",
				 "URIT¨CA63B", "ArticleShow.asp?ArticleID=65",
				 "URIT¨CA68B", "ArticleShow.asp?ArticleID=66");
			     break;
			default:
			  var typeOptions = new Array("Product","");
			  break;
	}
	document.all.typed.options.length = 0;    
	for(var i = 0; i < typeOptions.length/2; i++) {
	    document.all.typed.options[i]=new Option(typeOptions[i*2],typeOptions[i*2+1]);

	    if (document.all.typed.options[i].value=="") 
	    {
	    	document.all.typed.selectedIndex = i;
	    }
	}
}


function initprovcity() {
	var provObject = document.all.variety;
    for(var i = 0; i < document.all.variety.options.length; i++) {
        if (document.all.variety.options[i].value=="")
        {
        	//alert("prov put is ok");
        	document.all.variety.selectedIndex = i;
        }
    }
    settype();
}
initprovcity();
-->							