// JavaScript Document

function sendPage(urlToGoTo) {
	var urlToSend = document.location;
	var newPage = urlToGoTo + "?sendURL="+urlToSend;
//	alert (newPage);
	document.location = newPage
}