
function window_open(url, win_width, win_height) {
	
	//win_width += 20;
	//win_height += 20;
	
	var screen_width = window.screen.width;
	var screen_height = window.screen.height;

	var win_left = screen_width / 2 - win_width / 2;
	var win_top = screen_height / 2 - win_height / 2;

	var win = window.open(BASE_HREF + url, "", "width=" + win_width + ", height=" + win_height + ", scrollbars=1, location=0, menubar=0, resizable=0, status=0, titlebar=0, toolbar=0, screenX=100, left=" + win_left + ", screenY=30, top=" + win_top);
 	
}

function openImage(src, win_width, win_height) {
	
	var screen_width = window.screen.width;
	var screen_height = window.screen.height;

	var win_left = screen_width / 2 - win_width / 2;
	var win_top = screen_height / 2 - win_height / 2;
	
	var win = window.open("", "", "width=" + win_width + ", height=" + win_height + ", scrollbars=1, location=0, menubar=0, resizable=0, status=0, titlebar=0, toolbar=0, screenX=100, left=" + win_left + ", screenY=30, top=" + win_top);
	
	win.document.writeln("<html>");
	win.document.writeln("<body style=\"padding:0px; margin:0px;\">");
	win.document.writeln("<table border=\"0\" width=\"100%\" height=\"100%\" cellspacing=\"0\" cellpadding=\"0\">");
	win.document.writeln("<tr>");
	win.document.writeln("<td width=\"100%\" align=\"center\" valign=\"top\">");
	win.document.writeln("<img src=\"" + BASE_HREF + src + "\">");
	win.document.writeln("</td>");
	win.document.writeln("</tr>");
	win.document.writeln("</table>");
	win.document.writeln("</body>");
	win.document.writeln("</html>");
	
	win.document.close();
	
	win.focus();
    
}

function add_more(elem) {
	
	var parent = elem.parentNode.parentNode;
	
	var before = document.getElementById("files");
	
	var node = document.createElement("div");
	node.className = "ordInp";
	node.innerHTML = "<input type=\"file\" name=\"attach[]\">";
	
	parent.insertBefore(node, before);
	
}
