/*if (parent.frames[0]){ top.location.href="/"; }*/

function  popUP(url,h,w,resizable,scrollbars) {
    if(resizable=='')resizable='no';
    if(scrollbars=='')scrollbars='yes';
    var leftPos = (screen.availWidth-700) / 2;
    var topPos = (screen.availHeight-550) / 2;
    window.open( url ,'bigImg','width=' + w + ',height=' + h + ',scrollbars='+ scrollbars +',resizable='+ resizable +',titlebar=0,top=' + topPos + ',left=' + leftPos);
}

function SDiv(id) {
    eval("obj = document.getElementById('"+id+"');");
    if(obj.style.display=='none') {
        obj.style.display='block';
    }
    else {
        obj.style.display='none';
    }
}

function go1(){
    if (document.selecter1.select1.options[document.selecter1.select1.selectedIndex].value != "none") {
        location = 'http://www.fxclub.org' + document.selecter1.select1.options[document.selecter1.select1.selectedIndex].value;
    }
}

