var newWindow;
function popSendThisPage(url)
{
	newWindow = window.open(url,'name','height=600,width=400');
	if (window.focus) {newWindow.focus()}
}

