var temp
function openEditor(obj) {
	if (document.getElementById("html") )
		document.getElementById("html").id = '';
	document.getElementsByName(obj)[0].id = 'html';
	window.open("/photos/admin/html-editor/editlet","HTML_Editor","toolbar=no, location=no, directories=no, status=no, menubar=no, scrollbars=yes, resizable=yes, copyhistory=yes, left=0, top=0, height="+(screen.availHeight-60)+" ,width="+(screen.availWidth-10));
}

function previewForm(FORM,action_page) {
	FORM.action = action_page ;
	FORM.target = "_blank" ;
}
function confirmForm(FORM,action_page) {
	FORM.action = action_page ;
	FORM.target = "_self" ;
}

function openPhotoItems(photo) {
	InsertImages = window.showModalDialog('/photos/admin/photo-select?photo='+photo,window,"dialogHeight:"+(screen.availHeight-60)+"px;dialogWidth:500px;");
}

function setPageURL(obj) {
	//alert(obj.parentNode.firstChild.innerText);
}

function setSelected(obj) {
	var x = document.getElementsByName('menuItem');
	for (var j=0;j < x.length;j++) {
		x[j].style.color = "";
		x[j].parentNode.className = 'unselectedItem';
		x[j].parentNode.getElementsByTagName('div').item(0).style.visibility = 'visible';
	}
	//obj.style.color = "#CCCCCC" ;
	obj.parentNode.className = 'selectedItem';
	obj.parentNode.getElementsByTagName('div').item(0).style.visibility = 'hidden';
    if (obj.id) {
        document.getElementById("node_photo").src = '/photos/vw/' +obj.id ;
    }
}