// Script begins


//rollovers

function rollOver(theImage,rollOverImg){
	
	if (!theImage.originalSrc){
		theImage.originalSrc = theImage.src;}
	theImage.src=rollOverImg;
	
}

function rollOut(theImage){
	
	theImage.src=theImage.originalSrc;
	
}

// code for rollover-out onMouseOver="rollOver(this,'/images/button_help-on.GIF')" onMouseOut="rollOut(this)"


function popWindow(winlink, width, height){
	portWindow = window.open(winlink, "popWin", "scrollbars=yes width=" + width + ",height=" + height)
	portWindow.focus()
}

function closeWindow(){
self.close()
}

  var win;
  function pop(s)
  {
    win = window.open(s,'_ajam','toolbar=yes,location=no,status=yes,menubar=yes,scrollbars=yes,width=800,height=600,resizable=yes');
    win.focus();
  }

// Script ends
