//note that current_section should be an array

var current_section = ['HOME_div'];

function show_section(elem_id_array) {
	current_section = elem_id_array;
	reset_sections();
	hide_sections();
	//set_divs_display(['artwork_div', 'webwork_div'], "none");
	set_divs_display(['artwork_div'], "none");
	document.body.background = "images/bk1.jpg";
	set_divs_display(elem_id_array, "block");
}

function hide_sections() {
	set_div_display('artwork_div', "none");
	set_div_display('ABOUT_div', "none");
	set_div_display('GUESTBOOK_div', "none");
	set_div_display('CONTACT_div', "none");
	set_div_display('SHOWINFO_div', "none");
	set_div_display('HOME_div', "none");

	//set_div_display("about_zoombar", "none");


}

function show_statusbar_msg(msg) {
	//var obj = document.getElementById("cnc_status_div");
	set_div_display('cnc_status_div', "block");
	set_div_innerhtml('cnc_status_txt_div', msg);
}

function show_guestbook() {
	current_section = 'GUESTBOOK_div';
	reset_sections();
	hide_sections();
	set_divs_display(['artwork_div'], "none");
	document.body.background = "images/bk1.jpg";

	var today = new Date();
	var time = today.getSeconds();
	var pre_imgsrc = time.valueOf();
	document.getElementById('guestbook_formcode_div').innerHTML = "<img src='../apps/formcode.php?"+pre_imgsrc+"' alt='' />";

	set_divs_display(['GUESTBOOK_div'], "block");

}

function reset_guestbook() {
	document.cnc_gb_form.elements['cnc_gb_name'].value = "";
	document.cnc_gb_form.elements['cnc_gb_email'].value = "";
	document.cnc_gb_form.elements['cnc_gb_webpage'].value = "";
	document.cnc_gb_form.elements['cnc_gb_loc'].value = "";
	document.cnc_gb_form.elements['cnc_gb_entry'].value = "";
}
