/*
function OpenEditor(uri, id) {
	editorWin = window.open(_editor_path + "?_page_uri=" + uri + "&_id=" + id, "editorWin", "width=750,height=480,menubar=no,scrolling=no,toolbar=no,status=yes");
}
*/

function OpenEditor(uri, textpath, id) {
	if(textpath != '') {
		editorWin = window.open(_editor_path + "?_page_uri=" + uri + "&_id=" + id + "&_text_path=" + textpath, "editorWin", "width=750,height=480,menubar=no,scrolling=no,toolbar=no,status=yes");
	} else {
		editorWin = window.open(_editor_path + "?_page_uri=" + uri + "&_id=" + id, "editorWin", "width=750,height=480,menubar=no,scrolling=no,toolbar=no,status=yes");
	}
}

function OpenImageUpdate(name) {
	editorWin = window.open(_image_path + "?_image_name=" + name, "editorWin", "width=400,height=200,menubar=no,scrolling=no,toolbar=no,status=yes");
}

function AdminPopup(url, width, height) {
	adminPopup = window.open(url, "adminPopup", "width="+width+",height="+height+",menubar=no,scrolling=no,toolbar=no,status=yes,resizable=yes");
}

function HighlightSimpleText(obj, on) {
	if(on) {
		obj.style.backgroundColor = "yellow";
		obj.style.cursor = "hand";
		if(!is_ie){
			obj.style.cursor = "pointer";
		}
	} else {
		obj.style.background = "transparent";
		obj.style.background = "transparent";
		obj.style.cursor = null;
	}
}