

function displayToggle(item) {
thisItem=document.getElementById(item);
thisItem.style.display=(thisItem.style.display=="none" ? "block" : "none");
return false;
}

function openNewWindow(url, w, h) {
newWin = window.open(url, '', 'resizable,scrollbars,width=' + w + ',height=' + h);
return false;
}

function confirmDelete(myForm, record) {
if (confirm('You are about to delete this record.\r\nContinue?')) {
/*disableForm(myForm);*/
location.href=document.location.pathname+'?action=delete&id='+record;
}}

function preview(myForm, id) {
myForm.form.action='/admin/superuser/affiliates/customize.php?action=preview&id='+id;
/*disableForm(myForm);*/
return true;
}



function enlargeImage(title, path, h, w) {
imageWindow=window.open('','','resizable,status,width='+w+',height='+h);
imageWindow.document.write('<html><head><title>'+title+'</title></head><body style=\"margin: 0;\" onload=\"window.defaultStatus=\'H:'+h+' W:'+w+'\'\" onblur=\"self.close()\"><img src=\"'+path+'\"></body></html>')
imageWindow.document.close();
return false;
}