function change_ind_loc(){
	var page = document.getElementById('industrial_location').value;
	if(page != ""){
		window.location = page;
	}
}

function ShowFullSize(equip_id){
	 var win = window.open ("../../cgi/equipment_display_fullsize.php?equip_id="+equip_id,"ImageInfo","status=1,toolbar=0,scrollbars=1,width=800,alwaysRaised=1");
	win.focus();
}

function formatText(elementName){
	//alert(elementName);
	theString = document.getElementById(elementName).value;
	theString = theString.replace(/\r/gi,"<br />");
	theString = theString.replace(/\n/gi,"<br />");
	document.getElementById(elementName).value = theString;
	//document.forms[0].submit();
}