// JavaScript Document


function popup (theURL,winName,features) {
	window.open(theURL,winName,features);
}


function showGallery (title, images){
	window.open ("/site/content/gallery.php?images=" + images + "&title="+title, 'Galerie', 'width=475, height=520, scrollbars=no, resizable=0');	
	
}

function showPic (id, path, k, last){
	img = document.getElementById (id);
	tab = document.getElementById ('tab_' + k);
	if (last == 1) {
		classValue = 'selectedlast';
	} else {
		classValue = 'selected';
	}
	
	tab.attributes['class'].value = classValue;
	img.src = path;
}


