/**
 * base.js 
 * 
 * Common javascript functions 
 * 
 * author Matt Chamberlain, MC 
 * version 1.0, Feb 2008, MC
 */

function newWindow(extLink) {
	extWindow = window.open(extLink)
	extWindow.focus()
}

