// Script (c) S2 Advanced 2010 (0844 846 6052) enquiries@s2advanced.com
// This script may not be copied, modified, or used outside the context of www.freight2mail.com
// without express written permission from S2 Advanced.

var S2_dom_available=(document.getElementById?true:false);
var S2_IE4_dom=((document.all&&!S2_dom_available)?true:false);
var S2_NS4_dom=(document.layers?true:false);
function getRef(id){if(S2_dom_available) return document.getElementById(id);if(S2_IE4_dom) return document.all[id];if(S2_NS4_dom) return document.layers[id];}

// Explorer Menu Fix
startList=function(){
	if(document.all&&document.getElementById){
		navRoot=document.getElementById("nav");
		for(i=0;i<navRoot.childNodes.length;i++){
			node=navRoot.childNodes[i];
			if(node.nodeName=="LI"){
				node.onmouseover=function(){this.className+=" over";};
				node.onmouseout=function(){this.className=this.className.replace(" over", "");};
			}
		}
	}
};
window.onload=startList;

// Popups
function openFixedWin(a){temp=window.open(a,"_blank","width=400,height=300,toolbars=no,menubar=no,addressbar=no,scrollbars=yes");}

function openWin(a,b,c){temp=window.open(a,"_blank","width="+b+",height="+c+",addressbar=no,menubar=no,toolbars=no");}

function submitFree(){
document.postevent2.contact.value=document.freepost.contact.value;
document.postevent2.company.value=document.freepost.company.value;
document.postevent2.postcode.value=document.freepost.postcode.value;
document.postevent2.telephone.value=document.freepost.telephone.value;
document.postevent2.email.value=document.freepost.email.value;
document.postevent2.submit();
}

