/*

===========================================================
 LINK EXCHANGE SCRIPT for MORRIS [moozico]
===========================================================
 Written by, Davis 'X0' John
 Scriptlance ID: davisx0
 Contact: davix0@yahoo.com
-----------------------------------------------------------
 File: script.js
 Javascript functions for user interaction
-----------------------------------------------------------

*/

function checkLoginForm(frm)
{
		if (!frm.useremail.value || !frm.password.value)
		{
				alert ('Please enter your email and password.\r\nIf you are a new user, give the email and password that you want to use.');
				return false;
		}
		return true;
}

function popupHelp(q)
{
	var width = 350;
	var height = 150;
	var left = (screen.width-width)/2;
	var top = (screen.height-height)/2-50;
	
	window.open('popuphelp.php?q='+q, 'ssPopupHelp', 'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbar=no,resizable=no,copyhistory=yes,width='+width+',height='+height+',left='+left+', top='+top);
}

