// JavaScript Document

function OpenPopUnderWindow(theURL,width,height,title) { //v2.0
	//var features = "width=" + width + ",height=" + height;
	var left   = (screen.width  - width)/2;
 	var top    = (screen.height - height)/2;
 	var params = 'width='+width+', height='+height;
 	params += ', top='+top+', left='+left+', scrollbars=no';
  	NewWindow = window.open(theURL,title,params);
	NewWindow.blur();
}
