function clearInput(id)
{
	document.getElementById(id).value = "";
}

function refillInput(id)
{
	if(document.getElementById(id).value == "")
	{
		if(id == "l266594-266594")
		{
			document.getElementById(id).value = "email address";
		}
		if(id == "name")
		{
			document.getElementById(id).value = "name";
		}
		if(id == "organization")
		{
			document.getElementById(id).value = "organization";
		}
	}
	else
	{
	
	}
}

var message = new Array("Does your Competition Have a Marketing Team?","Looking to hire a Marketing Coordinator?","Is your business getting the attention it deserves?");

function rotatingMessage()
{
	var ran_number=Math.round(Math.random()*(message.length-1));
	document.write(message[ran_number]);
}


function popUp(URL,w,h) {
day = new Date();
id = day.getTime();
eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=1,width="+w+",height="+h+",left = 50,top = 50');");
}