/**
 * @author Juan David - Ene-05-2009
 * @projectDescription Specific code for the sign in.jsp page
 * @version 1.0
 * 
 */


EventObject.onPageLoad = function(){
	
	void showConfirmation();
	void addEventListeners();	
}

function addEventListeners(){
	EventObject.addEventListener(EventObject.CLICK, a_contact_click, document.getElementById("a_contact"));
}

function showConfirmation(){
	if(document.getElementById("inp_messageSend") != null){
		message = new PopUp();
		message.Confirm("Thank you for your message; we will get back to you shortly", "Contact Us", "message.removePopUp()")
	}
}

function a_contact_click(evt) {
	document.getElementById('formContactUs').submit();
	return false;
}
