function parsemenuMouseOver(id, templsrc1, templsrc2, lang, on) {
	if (lang != "") {
		lang = lang + "-";
	}
	if (document.all) {
		document.all[id].src = templsrc1+"../image/"+lang+templsrc2+"-"+on+".gif";
	}
}

var nwin = null;

function openImage(url, w, h) {
	nwin = window.open(null, null, "scrollbars=no,status=no,height=" + eval(h+40) + ",width=" + eval(w+20));
	nwin.document.write("<html><head><title>Juv</title></head><body>");
	nwin.document.write("<center><img border='1' src='" + url + "' width='" + w + "' height='" + h + "'>");
	nwin.document.write("<a href='javascript:window.close();'><img border='0' src='../image/window-close.gif' width='25' height='20'></a></center>");
	nwin.document.write("</body></html>");
	nwin.focus();
}