<!--- START New Window Popper --->
popupWins = new Array();
function windowOpener(url, name, args) {
if ( typeof( popupWins[name] ) != "object" ){
popupWins[name] = window.open(url,name,args);
} else {
if (!popupWins[name].closed){
popupWins[name].location.href = url;
} else {
popupWins[name] = window.open(url, name,args);
}
}
 
popupWins[name].focus();
}
<!--- END New Window Popper --->



<!--- START Auto-Form Select --->
        function selectalink(url)       {
                if (url != '')  {
                        top.parent.location.href = url;
                }
        }
<!--- END Auto-Form Select --->





