<!--

if (document.images)

{

	// ROLLOVERS FOR GLOBAL NAVIGATION	

	gn1on = new Image();

	gn1on.src = "image/new_homeHot.gif";

	gn1off = new Image();

	gn1off.src = "image/new_homeCold.gif";		

	

	gn2on = new Image();

	gn2on.src = "image/new_pressHot.gif";

	gn2off = new Image();

	gn2off.src = "image/new_pressCold.gif";	

	

	gn3on = new Image();

	gn3on.src = "image/new_collectionHot.gif";

	gn3off = new Image();

	gn3off.src = "image/new_collectionCold.gif";

	

	gn4on = new Image();

	gn4on.src = "image/new_aboutHot.gif";

	gn4off = new Image();

	gn4off.src = "image/new_aboutCold.gif";	

	

	gn5on = new Image();

	gn5on.src = "image/new_sizingHot.gif";

	gn5off = new Image();

	gn5off.src = "image/new_sizingCold.gif";

	

	gn6on = new Image();

	gn6on.src = "image/new_contactHot.gif";

	gn6off = new Image();

	gn6off.src = "image/new_contactCold.gif";

	

}



function rollOver(imgName,state) 

{

	if (document.images) 

	{

		document.images[imgName].src = eval(imgName + state + ".src");

	}

}



function checkForm(formName){

	var f = document.forms[formName];

	var msgStr = "";

	var bCheck = 1;

	if (f.name.value == ""){

		bCheck = 0;

	}

	if (f.email.value == ""){

		bCheck = 0;

	}

	if (f.company.value == ""){

		bCheck = 0;

	}



	

	if (bCheck == 0){

		alert("Please enter information in all REQUIRED fields.");

		return false;

	}

	return true;

}





//-->