<!--

url = document.location.href;
	if(url.indexOf('https') == 0){
		url = "http" +url.substring(5,url.length);
		window.location= url;
}


function popupWindow(url, width, height) {
        var w = 400;
        var h = 300;
        if(!width)
          width = 640;
        if(!height)
          height = 480;
        w = eval(screen.availWidth);
        h = eval(screen.availHeight);
        var leftPos = Math.abs(eval(w - width)) / 2;
        var topPos = Math.abs(eval(h - height)) / 2;
        wh = window.open(url, url,
         "dependant=yes,resizable=yes,scrollbars=yes,status=1,toolbar=1,location=1,menubar=1,directories=1")
        wh.focus();
        return false;
}



//-->
