var newwindow;
function popUp(url, n, h, w)
{
	newwindow=window.open(url, n,'height='+h+',width='+w+',left=100,top=100,resizable=yes,scrollbars=yes,toolbar=0,status=0,menubar=0,location=0');
	if (window.focus) {newwindow.focus()}
}


