// JavaScript Document

// SEND FORM TO DIFFERENT URLS
function sendForm(action) {
	document.forms[0].action = action;
	document.forms[0].submit();	
    return true;
}

// OPEN EXCHANGE EMAIL BOX
function ExchangeInbox(){
OpenWin = window.open("email/index.cfm", "EmailWindow", "toolbar=no,menubar=no,location=NO,scrollbars=no,resizable=yes,width=750 ,height=600");
}