// JavaScript Document
function isEmpty(Field, Msg)
{
	if(Field.value == ""){
		alert(Msg)
		Field.focus()
		return true
	}
	return false
}

function validate(form)
{

	
	if(isEmpty(form.pass, "Please enter Password")) return false

	form.action="diningchk"; 
	form.submit();
	
	
	}


function makefade()
{
	document.getElementById('fade').style.width=screen.width;
	document.getElementById('fade').style.height=screen.height;

}


function BringUpPopup(webpage) {
				var url = webpage;
				var hWnd = window.open(url,"Control_Center","width=428,height=371,resizable=no,scrollbars=no,status=no,toolbar=no");
				 if (hWnd != null) {     if (hWnd.opener == null) { hWnd.opener = self; window.name = "home"; hWnd.location.href=url; } }
			}

			window.onload = function()   {
				document.forms[0].txtCustID.focus();
			}
