// JavaScript Document



//===== IDENTIFY BROWSER TYPES =======
ns=(document.layers)? true:false;
vi=(document.getElementById)? true:false;
ie=(document.all && !vi)? true:false;

//===== IRON OUT DOM INCONSISTENCIES =======
if (ns){hidden = "hide";visible = "show";}
		else{hidden = "hidden";visible = "visible";}
		
//===== PIC GAL =======

var i = 1;
function nextPic(name, section, number){
document[name].src = "images/gal_"+ section + i +".jpg";

i++;
if (i==number){
i= 0;
}
}


function prevPic(name, section, number){
if (i>0){
i--;
}else{
i=(number-1);
}
document[name].src = "images/gal_"+ section + i +".jpg";
}




/* ====POP-UP WINDOWS==== */

/* JUKEBOX */
var jukeboxWindow = '';
function jukeboxPopper(url){
if (!jukeboxWindow.closed && jukeboxWindow.location){
jukeboxWindow.location.href = url;
}
else
{
jukeboxWindow=window.open (url,'jukebox', config='height=275,width=330,toolbar=no,menubar=no,scrollbars=no,resizable=no,location=no,directories=no,status=no');
}
if (window.focus) {jukeboxWindow.focus()}
}

/* MOVIE */
var movieWindow = '';
function moviePopper(url){
if (!movieWindow.closed && movieWindow.location){
movieWindow.location.href = url;
}
else
{
movieWindow=window.open (url,'movie', config='height=330,width=300,toolbar=no,menubar=no,scrollbars=no,resizable=no,location=no,directories=no,status=no');
}
if (window.focus) {movieWindow.focus()}
}

var where=null;
function closeandGo(where){
window.opener.location.href= where;
window.close();
}