// JavaScript Document

var input = new Array();
var oform = null;
var webpage = '';

function navigate_to_top(frameset) {
	if(frameset != null) {
		frameset.location.href = '#top';	
	}
}

function display_object(objectname, visible) {
	var v_objectname = GEId(objectname);
	if(v_objectname != null) {
		v_objectname.style.display = visible ? 'block' : 'none';
	}
}

function select_hearaboutus_other(selectobject) {
	if(selectobject.selectedIndex == 2 || selectobject.selectedIndex == 9) {
		GEId('hearaboutus_other_textbox').style.display = 'block';
	} else {	
		GEId('hearaboutus_other_textbox').style.display = 'none';
		GEId('hearaboutus_other').value = '';
		
	}
}

function load_startup(page){
	//save current page
	webpage = page;
	
	switch(page)
	{	
	case 'contactus':
		input.push("firstname");
		input.push("email");
		input.push("confirmemail");
		input.push("phone");
		input.push("company");
		//input.push("enquirytype");
		input.push("hearaboutus");
		//input.push("comments");
		break;	
	default:
	}
}
