// <!--

//~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
// Include the redirector
//~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
//document.write('<SCRIPT LANGUAGE="JavaScript" type="text/javascript" src="/js/1759_redirector.js"></SCRIPT>');

//~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
// Window Popper
//~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
function openWindow(name, url, width, height) {
        popupWin = window.open(url, name, "width="+width+", height="+height+", scrollbars=yes,resizable=yes");
        popupWin.focus;
}

//~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
// Sets up the select statements
//~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
function defaultMenu(menu,passedVal) {
        var tempVal = 0;
        while (menu.options[tempVal].value != passedVal) {
                tempVal++;
        }
        menu.options[tempVal].selected = true;
}

function changeImages() {
	preloadFlag = true;
        if (document.images && (preloadFlag == true)) {
                for (var i=0; i<changeImages.arguments.length; i+=2) {
                        document[changeImages.arguments[i]].src = changeImages.arguments[i+1];
                }
        }
}
//-->

