// Script begins

//preload images

function menuHighlight(theCell){
	theCell.style.backgroundColor='#ECF6F5';
}

function menuRestore(theCell){
	theCell.style.backgroundColor='';
}

function popWindow(winlink, width, height){
	portWindow = window.open(winlink, "popWin", "scrollbars=yes width=" + width + ",height=" + height)
	portWindow.focus()
}

function closeWindow(){
self.close()
}

// Script ends