var igid = null;

function popup(id, title){
	window.open("detail.php?igid="+(igid == null ? id : igid) +"&title="+ title, 'detail', "width=400,height=400,top=0,left=0").focus();
	return false;
}

function show(id, name, src){
	igid = id;
	document.getElementById("gallery").src = src;
	document.getElementById("gallery").setAttribute("alt", name);
	return false;
}

function resizeWindow(w, h){
	window.resizeTo(w, h);
	window.moveTo(screen.width / 2 - w / 2,screen.height / 2 - h / 2);
}

function switchDisplay(first, last){
	if (document.getElementById(first).style.display == "none")
		document.getElementById(first).style.display = "block";
	else
		document.getElementById(first).style.display = "none";

	if (document.getElementById(last).style.display == "none")
		document.getElementById(last).style.display = "block";
	else
		document.getElementById(last).style.display = "none";
}
