function changeheader(pic) {

  if(heading.background != pic)

    heading.background = pic;

}



function show(elmnt,menu) {

  if(document.all) 

    var el = document.all(elmnt);

  else 

    if(document.getElementById) 

      var el = document.getElementById(elmnt);

  

  el.style.visibility="visible";

  if(menu == true) {

    el.style.width="10px";

    el.style.height="10px";

  }

}



function hide(elmnt,menu) {

  

  if(document.all) 

    var el = document.all(elmnt);

  else 

    if(document.getElementById) 

      var el = document.getElementById(elmnt);



  el.style.visibility="hidden";

  if(menu == true) {

    el.style.width="0px";

    el.style.height="0px";

  }

}



function donothing() {

      return false;

}



function mclick(e) {

   if(e.which==3) {

     return false;

   }

}



function addtoselection(ref) { 

  var win;

  var h = 75;

  var w= 400;

  win = window.open("addtoselection.php?ref="+ref,"addselection","width="+w+",height="+h+",top="+((window.screen.availHeight - h) / 2)+",left="+((window.screen.availWidth - w) /2)+",menubar=no,toolbar=no");

}



function showpic(ref,w,h,p) { 

  var win;

  

  win = window.open("pictures.php?ref="+ref+"&pic="+p+"&h="+h,"pictures","width="+w+",height="+h+",top="+((window.screen.availHeight - h) / 2)+",left="+((window.screen.availWidth - w) /2)+",menubar=no,toolbar=no");

}





function print_property(ref) {

  var win;

  

  var w = 600;

  var h = 500;

  win = window.open("print.php?ref="+ref,'print_property',"width="+w+",height="+h+",top="+((window.screen.availHeight - h) / 2)+",left="+((window.screen.availWidth - w) /2)+",menubar=no,toolbar=no,scrollbars=yes");

}  

  



function displayfooter () {

  if (screen.height >= 768) {

    document.write("<tr>");

    document.write("<td class='footer' colspan='2'>&nbsp;</td>");

    document.write("</tr>");

  }

}



function contactus(txtlink) {

  em=('laprimavera66@' + 'orange.fr');

  if (txtlink == "")

     txtlink = em;

  document.write(' <a class="textlink" href="mailto:' + em + '"> ' + txtlink + '</a>');

}



function scrollpic() {

  if(document.all) {

    var el = document.all('rightcell');

	el.style.backgroundPositionY = -textbox.scrollTop;

  }

  else 

    if(document.getElementById) {

      var el = document.getElementById('rightcell');

	  el.style.backgroundPosition = "147px -" + document.getElementById('textbox').scrollTop  + "px";

	}

}



function go(suffix,w,h) {

  var win;



  win = window.open(suffix+"booking_terms_and_conditions.htm","bookingcnditions","width="+w+",height="+h+",top="+((window.screen.availHeight - h) / 2)+",left="+((window.screen.availWidth - w) /2)+",menubar=no,toolbar=no,scrollbars=yes");

  win.focus();

}



function changelanguage(txtcolor) {

  var f = document.URL;

  if(f.indexOf("file:") == -1)

    var search = "/";

  else

    var search = "\\";

  offset = f.lastIndexOf(search);

  filename = f.substr(offset+1,f.length);

  document.write('<br><div style="margin-top: -8px;text-align: right"><a class="language" style="color:' + txtcolor + '" href="../en/'+ filename + '">EN</a> <a class="language" style="color:' + txtcolor + '" href="../fr/'+ filename + '">FR</a></div>');

}



function convert(amount) {

  win = window.open("http://www.laprimavera.com.fr/erates/converter.php?euro="+amount,"converter","width=350,height=120,top="+((window.screen.availHeight - 120) / 2)+",left="+((window.screen.availWidth - 350) /2)+",menubar=no,toolbar=no");

}