﻿//
//
//
//-----------------
// Useful functions
//-----------------
//alert("xxx");

function $(id)
{
	return document.getElementById(id);
};

//-----------
// Dom helper
//-----------

var Dom = 
{
	setOpacity : function(element, rate)
	{
		if (element.style.opacity != null)
			element.style.opacity = rate;
		else
			if (element.filters)
				element.style.filter = "alpha(opacity=" + (rate * 100) + ")";
	}
};
//--------------
// String helper
//--------------

//------------
// Date helper
//------------

//-----------
// Img helper
//-----------


//-----------------
// Validator helper
//-----------------
