function displayPopUp(abURL, width, height, title, status) {
var windowtitle="windowTitle";
if (title) {
	windowtitle = title;
}
var statusShow = "no";
if (status) {
	statusShow="yes";
}
var x = abURL.toLowerCase();
if (x.indexOf("orders.nsf") > -1) {
	if (dbPath=="A55640") {
		abURL = "https://secure20.prominic.net" + abURL;
	}
}
opts = 'width=' + width + ',height=' + height + ',resizable=yes,scrollbars=yes,status=' + 
	statusShow; 
window.open( abURL,windowtitle, opts);                     
}

