// Global Variables





// Image Popup

function openPhoto(p,w,h)
	{
	var window_width = String(Number(w) + 20);
	var window_height = String(Number(h) + 20);
	var window_scroll = "no";
	
	if(screen.width)
		{
		if((Number(w) + 20) > screen.width)
			{
			window_width = String(Number(screen.width) - 80);
			window_scroll = "yes";
			}
		if((Number(h) + 20) > screen.height)
			{
			window_height = String(Number(screen.height) - 80);
			window_scroll = "yes";
			}
		}
	else
		{
		if(w > 560)
			{
			window_height = "560";
			window_scroll = "yes";
			}
		if(h > 400)
			{
			window_height = "400";
			window_scroll = "yes";
			}
		}
	var open_specs = "toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=" + window_scroll + ",resizable=no,copyhistory=no,height=" + window_height + ",width=" + window_width + ",top=10,left=10";
	window.open(p,'one',open_specs);
	}
