
function openAdminWindow(newURL, winName) {
  win = window.open("", winName,'left=100,top=100,width=975,height=700,scrollbars,status=yes,toolbar=0,resizable=1');
  win.location.href = newURL;
   if (window.focus) {win.focus()}
}

function openPhotoWindow(newURL,winName) {
  win = window.open("", winName,'left=250,top=20,width=400,height=525,scrollbars,status=yes,toolbar=0,resizable=1');
  win.location.href = newURL;
   if (window.focus) {win.focus()}
}

function actSubmit(loc) {
   document.form.action = loc;
   document.form.submit();
}


<!-- Begin
function textCounter(field, countfield, maxlimit) {
if (field.value.length > maxlimit) // if too long...trim it!
field.value = field.value.substring(0, maxlimit);
// otherwise, update 'characters left' counter
else 
countfield.value = maxlimit - field.value.length;
}


function toggle(what){
 if(document.getElementById(what).style.display == "none"){
   document.getElementById(what).style.display = "block";
 }else{
   document.getElementById(what).style.display = "none";
 }
}





