/////////////////////////////////////////////////////////////////////
// Support for overLib Class Customizations
/////////////////////////////////////////////////////////////////////
  var ol_width=200;
  var ol_delay=100;
  var ol_fgcolor="#FFFFFF";
  var ol_bgcolor="#AAAAAA";
  var ol_offsetx=10;
  var ol_offsety=10;
  var ol_border=1;
/////////////////////////////////////////////////////////////////////
// Custom Functions
/////////////////////////////////////////////////////////////////////
function changeFieldandSubmit(frmName, currFld, newValue)
{
document.forms[frmName].elements[currFld].value = newValue;
document.forms[frmName].submit();
return true;
}

function selectField(frmName, prevFld, nextFld, maxlength)
{
if (document.forms[frmName].elements[prevFld].value.length == maxlength)
	document.forms[frmName].elements[nextFld].focus();
}

function openImage(I,W,H) {
window.open('./showimage.php?image='+I,"external",'width='+W+',height='+H+',resizable=0,scrollbars=no');
}

function openURL(url,W,H) {
window.open(url,"external",'width='+W+',height='+H+',resizable=1,scrollbars=yes');
}

function openURL2(url) {
window.open(url,"external");
}

function openMAP() {
window.open('http://maps.expedia.com/pub/agent.dll?qscr=mcst&strt1=201%20SE%202nd%20Ave&city1=Gainesville&stnm1=florida&zipc1=32601',"external",'width=800,height=500,resizable=1,scrollbars=yes');
}

function confirmSubcategoryDeletion(title) 
{
return confirm('The following action is irreversible and will delete the menu group "'+title+'" and ALL it\'s menu items!\nClick on OK only if you wish to proceed otherwise click cancel');
}