
function newWindow(url,width,height)
{
	var newWindow;	
	newWindow = window.open(url,"infoWindow","toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,width=" + width + ",height=" + height + ",screenX=40,screenY=40");
	newWindow.focus();
}

