function sendThisPage( formURL, URLToSend ) {
	var width  = 560;
	var height = 400;
	
	var posX = (screen.availWidth / 2) - (width / 2);
	var posY = (screen.availHeight / 2) - (height / 2);
	
	var sendWindow = window.open(formURL + "?page=" + URLToSend, "SendThisPage", "top=" + posY + ",left=" + posX + ",width=" + width + ",height=" + height + ",location=no,menubar=no,scrollbars=no,resizable=no,status=no,toolbar=no");
	sendWindow.focus();
}