function fnNewWindow(url, name, width, height, resizable, status, maximize){var howWide=screen.availWidth;var howHigh=screen.availHeight;topPos=(howHigh/2) - (height/2);leftPos=(howWide/2) - (width/2);var newWindow=this.open(url, name, 'scrollbars=1,menubar=1,toolbar=0,location=0,status=0,width='+width+',height='+height+',resizable=1,status='+status+',left='+leftPos+',top='+topPos);newWindow.focus();if (maximize==1){newWindow.moveTo(0,0);newWindow.resizeTo(howWide, howHigh);}}
function fnConfirmLink(hrefLink,confirmText){var varConfirm=false;varConfirm=confirm(confirmText);if (varConfirm){window.location=hrefLink;}}
function fnNewLocation(hrefLink){window.location=hrefLink;}
function fnToggleLayer(layerName){layer=eval(layerName);if(layer.style.display==""){layer.style.display="none";}else if(layer.style.display=="none"){layer.style.display="";}}
