function info_popup(forwhat,boxheight){
	path = "/misc/info_popup.php?area="+forwhat;
	
	if(boxheight != '') boxheight = boxheight;
	else boxheight = '380';

	show = open(path,'Information','width=410,height='+boxheight+',scrollbars=yes,left=200,top=100');
}

function open_close(popid,imgname) { 
	
	if(document.getElementById(popid).style.display=="none") { 
		document.getElementById(popid).style.display="block" 
		if(imgname != '')
			document.images[imgname].src = "/pix/minus.gif";
	} 
	else { 
		document.getElementById(popid).style.display="none"
		if(imgname != '')
			document.images[imgname].src = "/pix/plus.gif";
	} 
}

function smallpop(pic){
	size = "width=100,height=100,left=0,top=0,resizable=yes";
	path = "/misc/smallpicpopup.php?pic="+pic;
	view = "bigpic";;
	show = open(path,view,size);
}

