var PageLoaded = 0;

if (document.images) {
	agendaOff = new Image(); agendaOff.src="/conferences/2004symposium/images/agenda.gif";
	agendaOn = new Image(); agendaOn.src="/conferences/2004symposium/images/agendaOn.gif";
	registrationOff = new Image(); registrationOff.src="/conferences/2004symposium/images/registration.gif";
	registrationOn = new Image(); registrationOn.src="/conferences/2004symposium/images/registrationOn.gif";
	travelOff = new Image(); travelOff.src="/conferences/2004symposium/images/travel.gif";
	travelOn = new Image(); travelOn.src="/conferences/2004symposium/images/travelOn.gif";
	exhibitsOff = new Image(); exhibitsOff.src="/conferences/2004symposium/images/exhibits.gif";
	exhibitsOn = new Image(); exhibitsOn.src="/conferences/2004symposium/images/exhibitsOn.gif";
}


function img_act(img) {
	if (document.images) {
	imgOn = eval(img + "On.src");
	document [img].src = imgOn;
	}
}

function img_inact(img) {
	if (document.images) {
	imgOff = eval(img + "Off.src");
	document [img].src = imgOff;
	}
}

var popupWindow2 = null;

function popup2(url, features, width, height, x, y)
{
	if(popupWindow2 != null && !popupWindow2.closed)
		popupWindow2.close();
	
	popupWindow2 = window.open(url, "popupWindow2", features+",width="+width+",height="+height+",screenX="+x+",screenY="+y+",left="+x+",top="+y);
	
	return popupWindow2;
}
