﻿function mousein()
{
	var element = event.srcElement;
	element.bgColor = "white";
}
	
function mouseout()
{
	var element = event.srcElement;
	element.bgColor = "";
}

String.prototype.Trim = function() 
{ 
    return this.replace(/(^\s*)|(\s*$)/g, ""); 
} 
