﻿// JScript File
function exco(lId)
{ 
	oObj = document.getElementById("divMenuSubItems" + lId); 
	oIcon = document.getElementById("imgMenuItemIcon" + lId); 
	if (oObj.style.display=="inline")
	{
		oObj.style.display="none"; 
		oIcon.src = "System_Files/Up1.gif";
		//setCookie("MenuItemDisplay" + lId,"MenuItemDisplay" + lId + chr(61) + "none");
	} 
	else
	{
		oObj.style.display="inline"; 
		oIcon.src = "System_Files/Down1.gif";
		//setCookie("MenuItemDisplay" + lId,"MenuItemDisplay" + lId + chr(61) + "inline");
	}
}

function Tiny(lId){
    var obj= new Object;
	var id = ube();
	window.open('./System_Files/puTinymce.htm?x=' + 1 + "&txa=" + lId, null, 'width=750px, height=500px, toolbar=0, location=0, statusbar=0, menubar=0, left=150, top=150');
}

function ube(){
	var d = new Date();
	return d.getTime();
}


