/*******************************************************************************
* swap an image on mouse over/mouse out
* p = pointer to current object
* l = new image location
*******************************************************************************/

function swap(p, l) { p.src = l; }

/*******************************************************************************
* popup window
* url = url to be displayed in the popup window
* w = width of the popup window
* h = height of the popup window
*******************************************************************************/

function popup(url, w, h) {
	window.open(url, "plan", "dependent=1, menubar=1, resizable=1, scrollbars=1, width=" + w + ", height=" + h);
}	// end popup


/*******************************************************************************
* Google Analytics
*******************************************************************************/

try{
	var pageTracker = _gat._getTracker("UA-4329626-1");
	pageTracker._initData();
	pageTracker._trackPageview();
}
catch(e){
	window.status="Google Error.";
}
