function PopupWin(url,width,height,toolbar,scrollbar,location,menubar) {
	var windowRef = open (url,"displayWin",'width=' + width + ',height=' + height + ',toolbar=' + toolbar + ',scrollbars=' + scrollbar + ',location=' + location + ',menubar=' + menubar + ',resizable=yes,left=10,top=10,screenx=10,screeny=10'); 
	windowRef.focus();
}
function PopupWin2(url,width,height,toolbar,scrollbar,location,menubar) {
	var windowRef = open (url,"displayWin2",'width=' + width + ',height=' + height + ',toolbar=' + toolbar + ',scrollbars=' + scrollbar + ',location=' + location + ',menubar=' + menubar + ',resizable=yes,left=10,top=10,screenx=10,screeny=10'); 
	windowRef.focus();
}
function confirmDelete(confirmText) {
	var agree = confirm(confirmText);
    if (agree)
        return true;
    else
        return false;
}