var myrules = {
	'.enlarge' : function(element)
	{
		element.title = 'Click to enlarge';
		
		element.onclick = function()
		{
            openWindow('Popup/Gallery.asp?id=News/' + this.name + '_large.jpg', this.name, this.offsetWidth, this.offsetHeight);
            return false;
		}
	}
}