function contact()
{
	var text = "<BR><B>BST Sneltransport & Expeditie</B><BR><BR><BR>";
	text += "De Cnollenbijter 46<BR>"; 
	text += "1911 KC Uitgeest<BR><BR>"; 
	text += "Tel.:  0251-314861<BR>";
	text += "Fax.: 0251-314805<BR>";   
	text += "Email: <A HREF='mailto:info@bstsneltransport.nl'>info@bstsneltransport.nl</A>"; 

    var head = "Contact";

	if (document.getElementById)
	{
		document.getElementById("main").innerHTML = text;
		document.getElementById("head").innerHTML = head;
		document.getElementById("one").style.background = "url('./images/blue.jpg')";
		document.getElementById("two").style.background = "url('./images/blue.jpg')";
		document.getElementById("tray").style.background = "url('./images/blue.jpg')";
		document.getElementById("right").style.background = "url('./images/blue.jpg')";
	}
	else if (document.all)
	{
		document.all["main"].innerHTML= text;
		document.all["head"].innerHTML= head;
		document.all["one"].style.background = "url('./images/blue.jpg')";
		document.all["two"].style.background = "url('./images/blue.jpg')";
		document.all["tray"].style.background = "url('./images/blue.jpg')";
		document.all["right"].style.background = "url('./images/blue.jpg')";
	}
	else if (document.layers)
	{
		document.layers["main"].innerHTML = text;
		document.layers["head"].innerHTML = head;
		document.layers["one"].style.background = "url('./images/blue.jpg')";
		document.layers["two"].style.background = "url('./images/blue.jpg')";
		document.layers["tray"].style.background = "url('./images/blue.jpg')";
		document.layers["right"].style.background = "url('./images/blue.jpg')";
	}
}

