// JavaScript Document
function loadImage(str_Src,int_Width,int_Height,str_Caption) {
	var str_Content = "<div class=\"picturebig\"><img src=\"" + str_Src + "\" width=\"" + int_Width + "\" height=\"" + int_Height + "\" /></div>\n";
	if (str_Caption != undefined) {
		str_Content += "<div class=\"picturecaption\">" + str_Caption + "</div>\n";
	}
	document.getElementById("bigpicture").innerHTML = str_Content;
}
function doDropDown(obj_Field) {
	if (obj_Field.options[obj_Field.selectedIndex].value!="#") {
		location = obj_Field.options[obj_Field.selectedIndex].value;
	}
}
