function picpopup (picid) {
	imgPopup = window.open("picpopup.php?pic="+picid,'imgPopup','toolbar=0,location=0,scrollbars=0,status=0');
	imgPopup.focus();
}

function jumpUrl(site){
	window.location.href = site;
}

//Set class for an object
function setclass(id,classname) {
	var tobject = document.getElementById(id);
	if (tobject) tobject.className = classname;
}

//Hide or show element
function hideshow(obj ,theimg) {
	var newobj = document.getElementById(obj);
	var show = newobj.style.display;
	var img = document.images[theimg];
	if (img) img.src = (show == 'none') ? 'imgs/icons/icon_min.gif' : 'imgs/icons/icon_plus.gif';
	newobj.style.display = (show == 'none') ? 'block' : 'none';
	
}