function PopUpWindow(url, windowName, width, height) {
	window.open(url, windowName, "top=30, width=" + width + ",height=" + height + ", scrollbars=yes" + ", toolbar=yes" + ", resizable=yes");
}

function OpenAppWindow(url, windowName, width, height) {
   window.open(url, windowName, 'toolbar=no,scrollbars=yes,resizable=yes,left=0, top=0, width='+ width +', height='+ height);
}
