function newImage(arg) {
	if (document.images) {
		rslt = new Image();
		rslt.src = arg;
		return rslt;
	}
}

function changeImages() {
	if (document.images && (preloadFlag == true)) {
		for (var i=0; i<changeImages.arguments.length; i+=2) {
			document[changeImages.arguments[i]].src = changeImages.arguments[i+1];
		}
	}
}

var preloadFlag = false;
function preloadImages() {
	if (document.images) {
		home_over = newImage("images/home-over.jpg");
		sign_up_over = newImage("images/sign_up-over.jpg");
		help_faq_over = newImage("images/help_faq-over.jpg");
		contact_us_over = newImage("images/contact_us-over.jpg");
		testimonials_over = newImage("images/testimonials-over.jpg");
		message_board_over = newImage("images/message_board-over.jpg");
		preloadFlag = true;
	}
}


function getKeycode(e)
{


if(window.event) // IE
{
keynum = e.keyCode
}
else if(e.which) // netscape/Firefox/opera
{
keynum = e.which
}

if (keynum == 13) {

document.login_form.submit();
}

}


function TermsOfService() {

var newWindow = window.open('http://www.almightyincentives.com/terms.php','PopUp','width=500,height=500,location=0,scrollbars=1');

newWindow.focus();
}


function PrivacyPolicy() {

var newWindow = window.open('http://www.almightyincentives.com/privacy.php','PopUp','width=500,height=500,location=0,scrollbars=1');

newWindow.focus();
}