function toggle(intState,intChildren,intPageID)
{
	var objForm = document.getElementById("openForm");
	
	if(intChildren==1)
	{
		if(intState==0)
		{
			objForm.open.value = '';
		}
		else
		{
			objForm.open.value = intPageID
		}
		objForm.submit();
	}
}
function forward(strID)
{
	document.getElementById(strID).click();
}
function openUrl(strURL)
{
	top.frames.main.location.href = strURL;
}