function showDisclaimer(theURL,x,y) {
		var w, scrX, scrH;

		scrX = screen.width;
		scrY = screen.height;
		
		w = window.open(theURL,"_blank","toolbar=no,location=no,directories=no,status=no,menubar=no," +
 		              "scrollbars=no,resizable=no,width=" + x + ",height=" + y);
		
		w.moveTo((scrX-x)/2,(scrY-y)/2);
	}



