// 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()
}

// Script ends

