var shown='';
var screenwidth=800;
var screenheight=600;
var windowleft=450;
var windowtop=250;


function goto_page(){
	 window.location = window.document.fast_goto.other_prod.value;
	 return false;
}

var shown='';
var screenwidth=800;
var screenheight=600;
var windowwidth = 500;
var windowheight = 400;
var windowleft=250;
var windowtop=150;

function popup(url, name) {
shown=window.open(url, name,'left='+windowleft+',top='+windowtop+',toolbar=no,location=no,directories=no,status=no,scrollbars=yes,resizable=yes,copyhistory=no,width='+windowwidth+',height='+windowheight);
shown.focus();
return false;
}

var windowwidth1 = 800;
var windowheight1 = 750;
var windowleft1=250;
var windowtop1=150;

function popup1(url, name) {
shown=window.open(url, name,'left='+windowleft1+',top='+windowtop1+',toolbar=no,location=no,directories=no,status=no,scrollbars=yes,resizable=yes,copyhistory=no,width='+windowwidth1+',height='+windowheight1);
shown.focus();
return false;
}


isNS4 = (document.layers) ? true : false;
isIE4 = (document.all && !document.getElementById) ? true : false;
isIE5 = (document.all && document.getElementById) ? true : false;
isNS6 = (!document.all && document.getElementById) ? true : false;

function getelementbyid(myid) {
   if (isNS4){
        objElement = document.layers[myid];
     }else if (isIE4) {
        objElement = document.all[myid];
     }else if (isIE5 || isNS6) {
             objElement = document.getElementById(myid);
     }
return(objElement);
}

function switchDiv(objElement, header){
objElement = getelementbyid(objElement);
if(isNS4||isIE4){
    if(objElement.visibility == "visible") {
		objElement.visibility ="hidden"
	} else {
		objElement.visibility ="visible"
	}
} else if (isIE5 || isNS6) {
    if(objElement.style.display == ""){
		objElement.style.display = "none";
		header.className = "news_header";
		/*header.style.background = "#FFFFFF";*/
		oParent=header.parentNode;
		oParent.style.border = "1px solid #FFFFFF";
    } else {
		objElement.style.display = "";
		header.className = "news_header_active";
		/*header.style.background = "#F4F4F4";*/
		oParent = header.parentNode;
		oParent.style.border = "1px solid #EDEDED";
    }
}
return 1;
}