// JavaScript Document
function popup(URL, name, width, height, scrollbar) {
	window.open('popupMedia.php?'+URL,name,'width='+width+',height='+height+', scrollbars='+scrollbar+ ',location=no,directories=no,status=no,menubar=no,toolbar=no,resizable=no')	
}

function popupPicture(URL, width, height) {
	window.open('popup.php?url='+URL+'&width='+width+'&height='+height,'Picture','width='+width+',height='+height+', scrollbars=no,location=no,directories=no,status=no,menubar=no,toolbar=no,resizable=no')	
}

/* Scroller */
    <!-- Hide the script from old browsers --
    var timerID = null;
    var timerRunning = false;
    var id,pause=0,position=0;
    
	function ticker(msg) {
      var i,k;
      k=(75/msg.length)+1;
      for(i=0;i<=k;i++) msg+=" "+msg;
      document.form2.ticker.value = msg.substring(position,position+75);
      if(position++==38) position=0;
      id=setTimeout("ticker('"+msg+"')",5000/10); 
    }
	
    function action() {
      if(!pause) {
        clearTimeout(id);
        pause=1; 
      }
      else {
        ticker();
        pause=0; 
      }
    }
    // --end hiding here -->
/* -------------------------------------------------------------------------------- */
/* Scroller */
