﻿<!--
function ValidatorOnMouseOut(e)
{
	if(event.srcElement.id) // Checking Existance of Source Element.
	{
		event.srcElement.src = "images/validator.gif";
	}
}

function ValidatorOnMouseOver(e)
{
	if(event.srcElement.id) // Checking Existance of Source Element.
	{
		event.srcElement.src = "images/validator_active.gif";
	}
}
-->

