<!--
function openWindow(theURL,type) { //v1.0
	if (type == "wide") {
  		window.open(theURL,"photo","toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,width=300,height=200");
	}
	if (type == "tall") {
  		window.open(theURL,"photo","toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,width=200,height=300");
	}
}

// -->