
function PopUp(theURL,winName,features) {
	window.open(theURL,winName,features);
}

function ToggleItem(myItem) {
	if (myItem.style.visibility != 'hidden') {
		HideItem(myItem);
	} else {
		ShowItem(myItem);
	}
	return false;
}
function ShowItem(myItem) {
	myItem.style.visibility = 'visible';
	myItem.style.display = '';
}
function HideItem(myItem) {
	myItem.style.visibility = 'hidden';
	myItem.style.display = 'none';
}

function OnSubmitForm(currentForm)
{
	var hiddenAction=document.getElementById('page-action');
	var pageAction = document.pressed;
	
	if(pageAction.indexOf('<')!=-1)
	{
		hiddenAction.value = "back";
	}
	else
	{
		if(pageAction=='Cancel')
		{
			hiddenAction.value = "cancel";
		}
	}
	
	return true;
}

