//show hide contend .
function showhideQ()
{
elem=document.getElementById("drc")
dlnk=document.getElementById("dlink")
if (elem.style.display=="none")
	{
	elem.style.display="block";
	dlnk.style.backgroundImage="url(/groups/public/documents/webasset/minus.gif)";
	dlnk.style.backgroundRepeat="no-repeat";
	dlnk.style.backgroundPosition="right 4px";
	}
	else
	{
	elem.style.display="none";
	dlnk.style.backgroundImage="url(/groups/public/documents/webasset/plus.gif)";
	dlnk.style.backgroundRepeat="no-repeat";
	dlnk.style.backgroundPosition="right 4px";
	}
}


function popWin(URL,WD,HG) {
	var strOptions = "width=" + WD + ",height=" + HG +
					",toolbar=no,menubar=no,status=no,location=no,scrollbars=yes,resizable=yes,directories=no";
	aWindow = window.open(URL, "popUp", strOptions);
}