function openWindow(urlLink,title){

var xPos = screen.width/2 -  400;
var yPos = screen.height/2 -  300;
//alert("copyhistory=no,menubar=no,directories=no,location=no,toolbar=no,height=600,width=800,scrollbars=yes,resizable=yes,screenX=" + xPos + ",screenY=" + yPos);

window.open(urlLink, title, "height=600,width=800,scrollbars=yes,resizable=yes,screenX=" + xPos +",screenY=" + yPos); 
return false;

}
function openWindow(urlLink,title, width, height){

	var xPos = screen.width/2 -  400;
	var yPos = screen.height/2 -  300;
	window.open(urlLink, title, "height="+height +",width="+ width+",scrollbars=1,resizable=1,screenX=" + xPos +",screenY=" + yPos); 
	return false;

}
