function goto_URL(object) {
	window.location.href = object.options[object.selectedIndex].value;
}

function openwin(image_id,orientation,title) {
	var window_props;
	if (orientation == 'v') {
		window_props = 'height=828,width=840';
	}
	else {
		window_props = 'height=572,width=788';
	}
	msgWindow=window.open("","enlarge",window_props)  ; 
	msgWindow.document.write      ("<HEAD><TITLE>Enlarge: " + title + "</TITLE></HEAD><BODY bgcolor=\"#FFFFFF\">")   ;
    msgWindow.document.write      ("<div style=\"font-family: Arial, Helvetica, sans-serif;\" align=\"center\"><img src=\"images/full/IMG" + image_id + ".jpg\" alt=\"" + title + "\" border=\"0\"><br>");

    msgWindow.document.write      ("&nbsp;&nbsp;&nbsp;" + title + "<br><font size=\"1\"><a href=\"javascript:window.close()\">close window<a></a></font></div></BODY>");
}