	function openContactWindow(UID){
		var x,y
		x=(screen.width/2-(200/2));
		y=(screen.height/2-(120/2));
		objWindow1=window.open('./addcontact.asp?uid=' + UID,null,'height=120,width=200,left=' + x + ',top=' + y +',status=no,toolbar=no,menubar=no,scrollbars=yes,location=no,resizable=1');
	}
	function openwindow(url,wt,ht){
		var x,y
		x=(screen.width/2-(wt/2));
		y=(screen.height/2-(ht/2));
		objWindow1=window.open(url,null,'height=' + ht + ',width=' + wt + ',left=' + x + ',top=' + y +',status=no,toolbar=no,menubar=no,scrollbars=yes,location=no,resizable=1');
	}
	function OpenVote(UID,UNAME,VOTE)
	{
	var x,y
	x=(screen.width/2-(250/2));
	y=(screen.height/2-(250/2));								
	window.open('/quickvote.asp?uid=' + UID + '&uname=' + UNAME + '&vote=' + VOTE,null,'height=250,width=250,left=' + x + ',top=' + y + ',status=no,toolbar=no,menubar=no,scrollbars=yes,location=no,resizable=1');
			
	}
	function openEnlargeWindow(UID){
		objWindow=window.open('enlarge.asp?uid=' + UID,null,'height=500,width=500,status=no,toolbar=no,menubar=no,scrollbars=yes,location=no,resizable=1');
		}	

