/********************************* new MPT ******************************************/

function fctPhotogalerie(actID,nextID) {


 var obj = false;
 var nextObj = false;

 if (document.all)  {
      obj =  document.all["image"+actID];
      nextObj =   document.all["image"+nextID];
     
 } else if (document.getElementById) {
        obj = document.getElementById("image"+actID)
        nextObj = document.getElementById("image"+nextID)  
    
 }

 if (obj) obj.className="nodisplay";
 if (nextObj) nextObj.className="showdisplay";
 }


/**** open Popup ****/
function fctOpenWin(resource,height,width,top,left,blnScrollbar,blnResizable,blnMenubar,targetname) 
{
   if( targetname=="") targetname = "MyWindow";

  if (typeof blnScrollbar == "boolean") {
     if (blnScrollbar) blnScrollbar='yes'; else  blnScrollbar='no';
   }
   if (typeof blnScrollbar == "boolean"){
     if (blnResizable) blnResizable='yes'; else blnResizable='no';
   }
   if (typeof blnScrollbar == "boolean"){
     if (blnMenubar) blnMenubar='yes'; else blnMenubar='no';
   }
   F = window.open(resource,targetname,"height="+height+",width="+width+",menubar="+blnMenubar+",resizable="+blnResizable+",scrollbars="+blnScrollbar+",left="+left+",top="+top);
   if (F.focus) F.focus();
}


/* sbr: Funktionen für das ein und ausblenden des Initialwertes des Top Suchefeldes */

function ht0(o,t){if(!o.value){o.style.color='#666';o.value=t;}}
function ht1(o,t){if(o.value==t){o.style.color='#000';o.value='';}}

