var ns4 = document.layers;
var ns6 = document.getElementById && !document.all;
var ie4 = document.all;

function galleryWindow(url) {
	newWindow = open( url, "galleryWin", "toolbar=0, directories=0, menubar=0, scrollbars=1, width=600, height=600, resizable=1");
}

function exhibitionWindow( url ) {
	newWindow = open( url, "exhibitionWin", "toolbar=0, directories=0, menubar=0, scrollbar=1, width=300, height=300, resizable=1");
}

function splashUploadControls( element, sectiontext, sectionid ) {
	var html = "";
	html += "Byt bild för \"" + sectiontext + "\"<br>";
	html += "<form enctype=\"multipart/form-data\" action=\"adminsplash.php?process\" method=\"post\">\n";
	html += "    <input type=\"hidden\" name=\"MAX_FILE_SIZE\" value=\"1000000\" />\n";
	html += "    <input type=\"hidden\" name=\"section\" value=\"" + sectionid + "\" />\n";
	html += "    Välj bildfil: <input name=\"userfile\" type=\"file\" />\n";
	html += "    <input type=\"submit\" value=\"Ladda upp\" />\n";
	html += "</form>\n";

	var e = getElement( element );
	e.innerHTML = html;
}

function getElement( eid ) {
	return document.getElementById(eid);
}
