﻿function getEl(objID)
{
	this.jqObj = undefined;
	var tmp = jQuery("#"+objID);
	if (tmp != undefined)
		this.jqObj = tmp[0];
	return this;
}

getEl.prototype.show = function()
{
	if (this.jqObj != undefined)
	{
		this.jqObj.style.display = 'block';
	}
}

getEl.prototype.hide = function()
{
	if (this.jqObj != undefined)
	{
		this.jqObj.style.display = 'none';
	}
}