function popupSlides (lnk) {
	w = 700; h = 480; id = "slideshow";
	globalProps = "resizable=1,menubar=0,status=0,scrollbars=1,toolbar=0,directories=0,location=0";
	win = window.open(lnk.href,id,'width='+w+',height='+h+','+globalProps+',top=0,left=0');
	win.focus();
    return false;
}

// - - - - - - - - - - - -
// HIDE AND SHOW
// - - - - - - - - - - - -

function turnOff (id) {
	setProp(id,'display','none');
}

function turnOn (id) {
	setProp(id,'display','block');
}

function setProp (id,prop,val) {
	el = document.getElementById(id);
	eval("el.style."+prop+" = '"+val+"';");
}

// - - - - - - - - - - - -
// GENERAL FUNCTIONS
// - - - - - - - - - - - -

function nostatus () {
	window.status=" ";
	return true;
}

// - - - - - - - - - - - -
// INIT FUNCTIONS
// - - - - - - - - - - - -

function pageInit () {
}

function init () {
	pageInit ();
}

window.onload = init;