
	function open_win()	{
		var x, y;
		x = (screen.width-467)/2;
		y = (screen.height-413)/4;
		window.open("contactus.asp","_blank","toolbar=no, location=no, directories=no, status=no, menubar=no, scrollbars=no, resizable=no, copyhistory=no , width=467 , height=413, top="+y+",left="+x);
	}

	function open_login(user)	{
		var x, y;
		x = (screen.width-467)/2;
		y = (screen.height-413)/4;
		if (user==1) {
			window.open("login.asp?name1=thisissomeoneelse","_blank","toolbar=no, location=no, directories=no, status=no, menubar=no, scrollbars=no, resizable=no, copyhistory=no , width=467 , height=413, top="+y+",left="+x);
		} else {
			window.open("login.asp","_blank","toolbar=no, location=no, directories=no, status=no, menubar=no, scrollbars=no, resizable=no, copyhistory=no , width=467 , height=413, top="+y+",left="+x);
		}
	}
	
	function edit_win(tblName,id)	{
		var x, y;
		x = (screen.width-627)/2;
		y = (screen.height-650)/4;
		window.open("edit/edit.asp?tbl="+tblName+"&id="+id,"_blank","toolbar=no, location=no, directories=no, status=no, menubar=no, scrollbars=no, resizable=no, copyhistory=no , width=627 , height=650, top="+y+",left="+x);
	}

