// JavaScript Document


function toggle(id){
	elem = document.getElementById(id);
	//img = document.getElementById(imgid);
    if (elem){
            if (elem.className == 'divoff'){
                    elem.className = "divon";
                    //img.src = "images/collapse.gif";
					//img.alt = "Close";
					//img.title = "Close";
                    }
			else{
				elem.className = "divoff";
				//img.src = "images/expand.gif";
				//img.alt = "Display";
				//img.title = "Display";
			}
     }
}


function galChk() {
	
	var elem = document.gal.album.options[document.gal.album.selectedIndex].value;
	if(isNaN(elem)) {
		alert('You Must Choose A Photo Album');
		return false;
	}
	else 
		return true;
}

