function disp_not_dsp(elemid,topelement,num) {	
    if (num==1) {
        document.getElementById(elemid).className = 'dsplblock';
		document.getElementById(topelement).className = 'specialoffert curentpagesp';
     }else{
        document.getElementById(elemid).className = 'dsplnone';
		document.getElementById(topelement).className = 'specialoffert';
    }
}
//IMAGE POPUP
function pop_up(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 IMAGE POPUP
