//
//	ThisProject.js
//
//	Client side script support specific to this project
//
//					Copyright (c) 2003 Sky High Group
//		All rights reserved. Unauthorized use or disclosure strictly prohibited.
//
	// Called via <body onload="InitializePage('default');" ....>
	// sPage is the active page (as specified in Website.xml)
function InitializePage(sPage){
}
function HotSpot(sID, sGraphic){
	var o = document.getElementById(sID, sGraphic);
	if (o == null) return;
	o.src = "Public/Images/" + sGraphic;
}
function ColdSpot(sID, sGraphic){
	var o = document.getElementById(sID, sGraphic);
	if (o == null) return;
	o.src = "Public/Images/" + sGraphic;
}
function Popup(sURL){
	window.open(sURL);
}
