//CHANGE baground
function ch_sect_bg(num) {
    divid = 'menusectm'; document.getElementById(divid).className = 'sectionmenu smbg'+num;     
}
//END CHANGE TAB
//CHANGE TAB
function tabbig(group,num) {
  for (i=1;i<5;i++) {
    divid = 'lsection'+group+'-'+i;
	dividr = 'rsection'+group+'-'+i;
    if (document.getElementById(divid)) {
      if (i==num)   {
		document.getElementById(divid).className = 'lsection';
        document.getElementById(dividr).className = '';
      }
      else {
		document.getElementById(dividr).className = 'wfdspnone';
        document.getElementById(divid).className = 'lsection wfdspnone';
      }
    }
    else continue;
  }
}
//END CHANGE TAB
//WINDOW POPUP
function pop_window(pURL, pWidth, pHeight) {
  if (!pURL) {
    return;
  }
  var offsetWidth = 50;
  var offsetHeight = 70;
  var windowFeatures = "toolbar=no,directories=no,location=no,status=no,menubar=no,resizable=yes,scrollbars=yes,"
    + "width=" + (pWidth + offsetWidth) + ",height=" + (pHeight + offsetHeight);
  var popup = window.open(pURL, 'imagePopup', windowFeatures);
  if (popup) {
    popup.focus();
	popup.moveTo(0,0);
  }
}
//END WINDOW  POPUP
