
//*********************** GLOBAL FUNCTIONS ***********************//
//****************************************************************//

// ----------------------- Suppliers page -----------------------//
function dropMenuSelect(targ,selObj,restore){ 
  mapClick(selObj.options[selObj.selectedIndex].value);
}
function mapClick(stateID){
	//alert(stateID);
	expandcontent(stateID);
}



// ----------------------- OPEN POPUP WINDOWS -----------------------//
function open_window(link, title, width, height){
	//	alert(link+', '+title);
	window.open(link, title, 'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=no,copyhistory=yes,width='+width+',height='+height);
}


// ----------------------- CONTACT FORM -----------------------//



function onDropDownChange()
{
	var brochures = document.getElementById("brochures").value;
	var required = document.getElementById("required").value;
	if(brochures == 'yes'){
		document.getElementById("required").value = required+',address,states,postcode';
		if(document.getElementById("address").value=='' || document.getElementById("states").value=='' || document.getElementById("postcode").value==''){
			ShowContent('brochureMessage');
		}
	}else{
		document.getElementById("required").value = 'name,email';
		HideContent('brochureMessage');
	}	
}



// -----------------------  -----------------------//

function HideContent(d) {
	document.getElementById(d).style.visibility = "hidden";
}
function ShowContent(d) {
	document.getElementById(d).style.visibility = "visible";
}
function ReverseContentDisplay(d) {
	if(document.getElementById(d).style.display == "none") { document.getElementById(d).style.display = ""; }
	else { document.getElementById(d).style.display = "none"; }
}