﻿// Survey JS
function surveyPop(lang) {
x=150;
 y=350;
 h=470;
 if(lang=="french") {
 h=520;
 }
 if (navigator.appName=='Microsoft Internet Explorer') {
  stile = "top="+x+",left="+y+",width=710,height="+h+",menubar=no,scrollbars=yes,resizable=yes,alwaysRaised=yes,status=yes,titlebar=no,dependent=1,zorder=1"
 }
 else {
  stile = "screenX="+x+",screenY="+y+",width=710,height="+h+",menubar=no,scrollbars=yes,resizable=no,alwaysRaised=yes,status=yes,titlebar=no,dependent=1,zorder=1"
 }
 if(lang=="french")
    page = "/french/survey.html";
    else
    page = "/english/survey.html";
 w=window.open(page,"Survey",stile);
}
