function NewWindow(url,the_width,the_height,toolbar_on,resize_on,scrollbar_on,winName)
{
	var option_str = "width=" + the_width + ",height=" + the_height + ",toolbar=" + toolbar_on + ",resizable=" + resize_on + ",scrollbars=" + scrollbar_on
	var detailWnd = window.open(url,winName,option_str);
    if (detailWnd != null) {
		detailWnd.focus();
  }

}
function setParent(vPath) {
// self.opener.frames["jonction"].frames["main"].location.href = vPath;
   self.opener.top.location.href = vPath;
   self.opener.top.focus();
 }

function MM_reloadPage(init) {  //reloads the window if Nav4 resized
  if (init==true) with (navigator) {if ((appName=="Netscape")&&(parseInt(appVersion)==4)) {
    document.MM_pgW=innerWidth; document.MM_pgH=innerHeight; onresize=MM_reloadPage; }}
  else if (innerWidth!=document.MM_pgW || innerHeight!=document.MM_pgH) location.reload();
}
MM_reloadPage(true);

function hideSpecs() {
 document.getElementById('txt').style.display = "none";
 document.getElementById('som').style.display = "none";

 document.getElementById('txt').style.visiblity = "hidden";
 document.getElementById('som').style.visiblity = "hidden";

 document.getElementById('linka').style.color = "#766763";
 document.getElementById('linkb').style.color = "#766763";
 
}

function hideSpecs2() {
 document.getElementById('txt4').style.display = "none";
 document.getElementById('somm').style.display = "none";

 document.getElementById('txt4').style.visiblity = "hidden";
 document.getElementById('somm').style.visiblity = "hidden";

 document.getElementById('linkc').style.color = "#766763";
 document.getElementById('linkd').style.color = "#766763";
 
}

function show(id) {
	e = document.getElementById(id);
	e.style.display = "block";
	e.style.visibility = "visible";
 l = document.getElementById('link'+id);
 if(l) {
  l.style.color = "#000";
 }
}