// JavaScript Document
// gastenboek.broeksmedia.nl
function popUp(theURL,winName,features) { //v2.0
  myWindow = window.open(theURL,winName,features);
  myWindow.focus();
}
function deleteRecord(I) {
if(confirm("Bericht verwijderen?"))
window.location = "/actions/delete_record.asp?I=" + I;
}
function deleteRecordGroup(I,F,T,R,P,G,GI,G2,GI2) {
if(confirm("Record verwijderen?"))
window.location = "/beheer/edit/delete_record.asp?T=" + T + "&F=" + F + "&I=" + I + "&R=" + R + "&P=" + P + "&G=" + G + "&GI=" + GI + "&G2=" + G2 + "&GI2=" + GI2;
}

