newwin = ""

function win(p,w,h)
{
	if (newwin != "") newwin.close()	
	
	page = p
	metrics = "width=" + w + ",height=" + h + ",left=50,top=50"
	newwin = window.open(page, "null", metrics)
	setTimeout('newwin.focus();',250);
}

function photowin(p,w,h)
{
	if (newwin != "") newwin.close()	
	
	page = "photo.asp?pic=" + p
	metrics = "width=" + w + ",height=" + h + ",left=50,top=50"
	newwin = window.open(page, "null", metrics)
	setTimeout('newwin.focus();',250);
}

function photowinScroll(p,w,h)
{
	if (newwin != "") newwin.close()	

	page = "photo.asp?pic=" + p
	metrics = "scrollbars width=" + w + ",height=" + h + ",left=50,top=50"
	newwin = window.open(page, "null", metrics)
	setTimeout('newwin.focus();',250);
}