// Tell a Friend - Popup function

var newWindow;
function popUp(url)
{
	newWindow = window.open(url,'name','height=430,width=500,left=100,top=100');
	if (window.focus) {newWindow.focus()}
}
