if (document.images) {

	img1= new Image
	img1.src = "images/profile"+hn+".gif";
	img1h= new Image
	img1h.src = "images/dprofile"+hn+".gif";

	img2= new Image
	img2.src = "images/service"+hn+".gif";
	img2h= new Image
	img2h.src = "images/dservices"+hn+".gif";

	img3= new Image
	img3.src = "images/contact"+hn+".gif";
	img3h= new Image
	img3h.src = "images/dcontact"+hn+".gif";

	img4= new Image
	img4.src = "images/serti"+hn+".gif";
	img4h= new Image
	img4h.src = "images/dserti"+hn+".gif";

	img5= new Image
	img5.src = "images/diamond"+hn+".gif";
	img5h= new Image
	img5h.src = "images/ddiamond"+hn+".gif";

	img6= new Image
	img6.src = "images/fine"+hn+".gif";
	img6h= new Image
	img6h.src = "images/dfine"+hn+".gif";

}

function hiLite(imgDocID,imgObjName) {
	if ((document.images) && (imgObjName != "img"+hc))
		document.images[imgDocID].src  = eval(imgObjName + ".src")
}

function jumpBox(list) {
	if (list.options[list.selectedIndex].value!="")
		location.href = list.options[list.selectedIndex].value
}

function formCheck()
{
	if (document.Form1.lastname.value=="")
	{
		alert ("Please fill your last name.");
		document.Form1.lastname.focus ();
		return false;
	}
	if (document.Form1.company.value=="")
	{
		alert ("Please fill your company name.");
		document.Form1.company.focus ();
		return false;
	}
	if (document.Form1.email.value=="")
	{
		alert ("Please fill your email.");
		document.Form1.email.focus ();
		return false;
	}
	if (document.Form1.email.value!="")
	{
		if (document.Form1.email.value.indexOf ("@")==-1 || document.Form1.email.value.indexOf (".")==-1 || document.Form1.email.value.indexOf (" ")!=-1 || document.Form1.email.value.length<6)
		{
			alert("Please fill your email address in a correct format.");
			document.Form1.email.focus ();
			return false;
		}
	}
	if (document.Form1.country.options[document.Form1.country.selectedIndex].value=="")
	{
		alert ("Please choose your company country.");
		document.Form1.country.focus ();
		return false;
	}
}