﻿<!--
function showHide(ElementID)
{
    var obj   = document.getElementById(ElementID);
    if (obj.style.display == 'none') {
        obj.style.display = 'block';
    }
    else {
        obj.style.display = 'none';
    }
}

function checkNumeric(evt)
{
	var charcode = evt.keyCode
	if ( (charcode > 31) && (charcode < 48 || charcode > 57) )
	{
		return false;
	}
	return true;
}

function HideElement(elementName)
{
	var elem	=	window.document.getElementById(elementName);
	//var elem	=	elementName;
	//window.alert(elem.style.display);
	if (elem != null)
	{
		elem.style.display = "none";
		
	}
}

function ShowElement(elementName)
{
	var elem	=	window.document.getElementById(elementName);
	//var elem	=	elementName;
	//window.alert(elem.style.display);
	if (elem != null)
	{
		elem.style.display = "";
	}
}

function TableCellAlign(elementName, alignType)
{
	var elem	=	window.document.getElementById(elementName);
	if (elem != null)
	{
		if ((alignType == "center")|| (alignType == "left") || (alignType == "right"))
		{
			elem.style.align = alignType;
		}
	}
}

function SetWidth(elementName, width1)
{
	var elem	=	window.document.getElementById(elementName);
	if (elem != null)
	{
		elem.style.width = width1;
	}
}

//-->
