var orderTblName = null
var family = null
var id1 = null
var id2 = null
var obj1 = ""
var obj2 = ""
var doneFlag = 0
	function orderButton(tblName,fieldID,obj,familyName) {
		if (doneFlag==0) {
			if (tblName==orderTblName) {
				if (id1==fieldID) {
					id1=null;
					orderTblName=null;
					obj1.style.backgroundColor='lightgrey';
					obj1="";
					family="";
				} else {
					if (family==familyName) {
						id2=fieldID;
						obj2=obj;
						obj2.style.backgroundColor='blue';
						doneFlag=1;
						window.open("reorder.asp?tblName="+tblName+"&id1="+id1+"&id2="+id2,"hidy","height=1,width=1,top=1,left=1");
					}
				}
			} else {
				family=familyName;
				orderTblName=tblName;
				id1=fieldID;
				obj1=obj;
				obj1.style.backgroundColor='blue';
			}
		}
	}
	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,fatherID)	{
		var x, y;
		x = (screen.width-627)/2;
		y = (screen.height-700)/4;
		if (fatherID=="") {
			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=700, top="+y+",left="+x);
		} else {
			window.open("edit/edit.asp?tbl="+tblName+"&fatherID="+fatherID,"_blank","toolbar=no, location=no, directories=no, status=no, menubar=no, scrollbars=no, resizable=no, copyhistory=no , width=627 , height=700, top="+y+",left="+x);
		}
	}
		function ChangeColor(obj) {
				obj1.style.backgroundColor='blue';
	}

