<!----------



function confirmIt 
(dbMsg,okURL,cancelURL,aOkMsg,aCancelMsg,okTyp,cancelTyp,okWin,cancelWin) {
	if (confirm (dbMsg)) {
		if (okTyp=="u"){
			if(okWin=="Self") location.href=okURL;
			if(okWin=="Parent") parent.location.href=okURL;
		}
		else {
			alert(aOkMsg);
		}
	}
	else {
		if (cancelTyp=="u") {
			if(cancelWin=="Self") location.href=cancelURL;
			if(cancelWin=="Parent") parent.location.href=cancelURL;
		}
		else {
			alert(aCancelMsg);
		}
	}
}

//--------->