
<!--
v=false;
//-->



<!--
if (typeof(Option)+"" != "undefined") v=true;
//-->



if(v){a=new Array(22);}

function getFormNum (formName) {
	var formNum =-1;
	for (i=0;i<document.forms.length;i++){
		tempForm = document.forms[i];
		if (formName == tempForm) {
			formNum = i;
			break;
		}
	}
	return formNum;
}

function jmp(form, elt)
// The first parameter is a reference to the form.
{
	if (form != null) {
		with (form.elements[elt]) {
			if (0 <= selectedIndex)
				location = options[selectedIndex].value;
		}
	}
}

var catsIndex = -1;
var itemsIndex;

if (v) { // ns 2 fix
function newCat(){
	catsIndex++;
	a[catsIndex] = new Array();
	itemsIndex = 0;
}

function O(txt,url) {
	a[catsIndex][itemsIndex]=new myOptions(txt,url);
	itemsIndex++;
}

function myOptions(text,value){
	this.text = text;
	this.value = value;
}

// fill array here

newCat();   //sub for Exporters
	O("ARCHITECTURAL","information_architectural.html");
	O("ENGINEERING","information_engineering.html");
	O("PROPERTY VALUERS","information_property_valuer.html");
	O("MULTI DISCIPLINARY PRACTICE","information_multi_disciplinary_practice.html");
	O("SURVEYORS","information_surveyors.html");
	O("PLANNERS","information_planners.html");
	O("LANDSCAPE","information_landscape.html");
	O("INTERIOR DESIGN","information_interior_design.html");
	O("PROJECT MANAGEMENT CONSULTANCY","information_pmc.html");
	O("OIL & GAS","information_oil_gas.html");
	O("ACCOUNTING","information_accounting.html");
	O("REAL ESTATE","information_real_estate.html");
	O("IT SERVICES","information_IT_service.html");
	O("MEDICAL","information_medical.html");
	O("LEGAL","information_legal.html");
	O("OTHERS","information_others.html");
newCat();   // sub for Intend To Export
    O("Choose One");
	O("ARCHITECTURAL","information_Intend_to_Export_architectural.html");
	O("ENGINEERING","information_Intend_to_Export_engineering.html");
	O("PROPERTY VALUERS","information_Intend_to_Export_property valuers.html");
	O("SURVEYORS","information_Intend_to_Export_surveyors.html");
	O("LANDSCAPE","information_Intend_to_Export_landscape.html");
	O("INTERIOR DESIGNERS","information_Intend_to_Export_interior designers.html");
	O("PROJECT MANAGEMENT CONSULTANCY","information_Intend_to_Export_pmc.html");
	O("ACCOUNTING","information_Intend_to_Export_accounting.html");
	O("BUSINESS SERVICES","information_Intend_to_Export_bussiness services.html");
	O("REAL ESTATE","information_Intend_to_Export_real estate.html");
	O("LEGAL","information_Intend_to_Export_legal.html");
	O("MEDICAL","information_Intend_to_Export_medical.html");

// end fill array
} // if (v)



function relate(formName,elementNum,j) {
    if(v){
        var formNum = getFormNum(formName);
         if (formNum>=0) {
        	formNum++; // reference next form, assume it follows in HTML
        	with (document.forms[formNum].elements[elementNum]) {
        		for(i=options.length-1;i>0;i--) options[i] = null; // null out in reverse order (bug workarnd)
        		for(i=0;i<a[j].length;i++){
        			options[i] = new Option(a[j][i].text,a[j][i].value);
        		}
        		options[0].selected = true;
        	}
        }
    }
    else {
        jmp(formName,elementNum);
    }
}

function IEsetup(){
	if(!document.all) return;
	IE5 = navigator.appVersion.indexOf("5.")!=-1;
	if(!IE5) {
		for (i=0;i<document.forms.length;i++) {
			document.forms[i].reset();
		}
	}
}

window.onload = IEsetup;

//-->