
Function.registerNamespace("SM");

SM.LinearGradient = {
	ApplyVGradient: SM_LinearGradient_ApplyVGradient
};

function SM_LinearGradient_ApplyVGradient(obj, from, to) {
	var path = window.location.href.split("schools.aspx")[0];
	var handlerPath = "VLinearGradient.aspx?length=" + obj.offsetHeight + "&from=" + from + "&to=" + to;
	obj.style.backgroundImage = "url(" + path + handlerPath + ")";
	obj.style.backgroundRepeat = "repeat-x";
	obj.style.backgroundColor = "transparent";
}

