function defaultWindow(URL){
	default_window = window.open(URL,"default");
}
function plainWindow(URL){
	plain_window = window.open(URL,"plain","width=550,height=430");
}
function fullWindow(URL){
	full_window = window.open(URL,"full","location,resizable");
}
function locationWindow(URL){
	location_window = window.open(URL,"locate","location,resizable");
}
function closeWindow(){
	window.close();
}
function MM_openBrWindow(theURL,winName,features) { //v2.0
	window.open(theURL,winName,features);
}
function gotoGallery(objectInstance){
	var number;
	number = objectInstance.value;
	if(number > 0){
		document.location.href = "gallery" + number + ".aspx";
	}
	else
		document.location.href = "gallery.aspx";
}
