function displaystates()
	{
		var dd = document.contactform.fm_country.selectedIndex;
		var ss = document.contactform.fm_country[dd].text;
		if(ss == "United States") {
			displayDiv2('statesdiv');
			hideDiv2('postaldiv');
		}
		else
		{
			displayDiv2('postaldiv');
			//document.contactform.fm_state.value = '';
		}
		if(ss != "United States") {
			hideDiv2('statesdiv');
			displayDiv2('postaldiv');
		}
		else
		{
			displayDiv2('statesdiv');
			//document.contactform.fm_state.value = '';
		}
	}
function hide_product(){
	//hide the product div
	var divID_2 = 'productdiv';
	hideDiv2(divID_2);
}
function show_product(){
	//show the product div
	var divID_2 = 'productdiv';
	displayDiv2(divID_2);
}
function initialHiddenDivs()
	{
		var divID_1 = 'statesdiv';
		var divID_2 = 'postaldiv';
		hideDiv2(divID_1);
		hideDiv2(divID_2);
	}
function hideDiv2(ss)
	{
		if (document.getElementById) { // DOM3 = IE5, NS6
			document.getElementById(ss).style.display = 'none';
		}
		else {
			if (document.layers) { // Netscape 4
				document.ss.display = 'none';
			}
			else { // IE 4
				document.all.ss.style.display = 'none';
			}
		}
	}
	function displayDiv2(ss)
	{
		if (document.getElementById) { // DOM3 = IE5, NS6
			document.getElementById(ss).style.display = 'block';
		}
		else {
			if (document.layers) { // Netscape 4
				document.ss.display = 'block';
			}
			else { // IE 4
				document.all.ss.style.display = 'block';
			}
		}
	}
