// JavaScript Document
function popUpWindow(url,title)
{
	  var nwl = (screen.width-550)/2;
	  var nwh = (screen.height-350)/2;
	  popUp=window.open(url, title, 'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,width=450,height=300,left='+nwl+',top=100'); 
	  popUp.window.focus(); 
}
