







// Utility function to position an element at a specific x,y location
function shiftTo(obj, x, y) {
		obj.pixelLeft = x
		obj.pixelTop = y
}

function showSection() {

	var obj = document.all.pageSection.style

	obj.visibility = "visible";
}

function ValidateHID(sHID, sType)
{				
	switch(sType.toLowerCase())
	{
		case 'n' :
			regex = /^[\d]*$/;
			return(regex.test(sHID));
			//alert(regex.test(sHID));
			break;
		case 'a' :
			regex = /^[\w]*$/;
			return(regex.test(sHID));
			//alert(regex.test(sHID));
			break;
	}	
	return false;	
}
	