// JavaScript Document

function rowcolor(id, bgcolor, text)
{
	var row = document.getElementById(id);
	row.style.background = bgcolor;
	row.style.borderWidth = "2px";
	row.style.borderColor = bgcolor;
	row.style.color = text;
	row.style.cursor = 'hand';
}

function launchMQ()
{
	var zip 	= document.getElementById('zip').value;
	var street 	= document.getElementById('street').value;
	
	if (zip.length > 5)
		alert("Please enter a valid ZIP");
	else
	{
		mapquest = "http://www.mapquest.com/directions/main.adp?go=1&do=nw&rmm=1&un=m&cl=EN&ct=NA&rsres=1&1ahXX=&1y=US&1a=" + street + "&1c=&1s=&1z=" + zip + "&2ahXX=&2y=US&2a=15420+Old+Columbia+Pike&2c=Burtonsville&2s=MD&2z=";
		document.open(mapquest, "CtrlWindow", "toolbar=yes,menubar=yes,location=yes,scrollbars=yes,resizable=yes");
	}
}