var newwindow;
function launchNewWindow(urlOfNewWindow)
{
	newwindow=window.open(urlOfNewWindow,'myNewWindow','width=500,height=500,toolbar=yes,location=yes,directories=yes,status=yes,menubar=yes,scrollbars=yes,copyhistory=yes,resizable=yes');
	if (window.focus) {newwindow.focus()}
}

