	function hmge ( id )
	{
		return document.getElementById( id );
	}
	
	function hmdisp( id )
	{
		document.getElementById( id ).style.display = "inline";
		//document.getElementById( id ).style.visibility = "visible";
	}
	
	function hmhide( id )
	{
		document.getElementById( id ).style.display = "none";
		//document.getElementById( id ).style.visibility = "collapse";
	}
	
	function hmshow( section ) {
		hideall();
		
		switch ( section )
		{
			case 'Roofing':
				hmdisp( 'hmRoofing' );
			break;
			case 'Windows':
				hmdisp( 'hmWindows' );
//				hmdisp( 'hmWindows2' );
			break;
			case 'Doors':
				hmdisp( 'hmDoors' );
//				hmdisp( 'hmDoors2' );
			break;
			case 'Other':
				document.getElementById( 'hmOther' ).style.display = 'inline';
			break;
		}		
	}
	
	function hideall()
	{
		hmhide( 'hmOther' );
		hmhide( 'hmWindows' );
//		hmhide( 'hmWindows2' );
		hmhide( 'hmRoofing' );
		hmhide( 'hmDoors' );
//		hmhide( 'hmDoors2' );
	}
	hmshow( document.getElementById( "Interested_in" ).value );