// JavaScript Document Site ATELIER //

// function acces rapide //

function MM_jumpMenu(targ,selObj,restore){ //v3.0
  eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");
  if (restore) selObj.selectedIndex=0;
}

// function open popup//

var newWin = null;
function closeWin(){
if (newWin != null){
if(!newWin.closed)
newWin.close();
}
}
function popUp(strURL,strType,strHeight,strWidth) {
closeWin();
var strOptions="";
if (strType=="01") strOptions="scrollbars,resizable, height="+300+",width="+550;
if (strType=="02") strOptions="toolbar,menubar,scrollbars,resizable,location,height="+300+",width="+550;
if (strType=="03") strOptions="scrollbars,height="+600+",width="+550;
if (strType=="04") strOptions="scrollbars,height="+500+",width="+500;
if (strType=="05") strOptions="height="+600+",width="+850;
newWin = window.open(strURL, 'newWin', strOptions);
newWin.focus();
} 



