<!--

function showroom(page) 
	{
     window.open(page,'newwindow','scrollbars=no,status=no,width=635,height=615,title="Online Showroom"')
	}
	
function validate_contactform ( )
{
    valid = true;

    if ( document.contact_form.name.value == "" || document.contact_form.message.value == "" || document.contact_form.email.value == "" )
    {
        alert ( "Please make sure all details marked with * are complete." );
        valid = false;
    }    

    return valid;
}	




////GOOGLE MAP
    //<![CDATA[

    function load() {
      if (GBrowserIsCompatible()) {
        var map = new GMap2(document.getElementById("map"));
        map.setCenter(new GLatLng(53.358953, -1.481094), 15);

        // Create our "tiny" marker icon
		var icon = new GIcon();
		icon.image = "http://labs.google.com/ridefinder/images/mm_20_red.png";
		icon.shadow = "http://labs.google.com/ridefinder/images/mm_20_shadow.png";
		icon.iconSize = new GSize(12, 20);
		icon.shadowSize = new GSize(22, 20);
		icon.iconAnchor = new GPoint(6, 20);
icon.infoWindowAnchor = new GPoint(5, 1);

        var marker = new GMarker(map.getCenter(), icon);

        //map.openInfoWindow(map.getCenter(), document.createTextNode("396-400 Abbeydale Road,\nSheffield,\nS7 1FQ"));

        map.openInfoWindowHtml(map.getCenter(), "<b>Visit our showroom at...</b><br />Abbeydale Interiors<br />396-400 Abbeydale Road,<br />Sheffield,<br />S7 1FQ");

  		  map.addOverlay(marker);


      }
    }

    //]]>
////GOOGLE MAP
-->