function test()
{
	alert("Testing 123...");
}
function searchGoogle()
{
	var str = "http://www.google.ro/search?hl=ro&q=" + Form1.txt_GoogleSearch.value + "&meta='";	
	window.navigate(str);
}				
		
function setImageColor(img, colorSource)
{
	img.src = colorSource.toString();	
}

function validateLength(source, args)
{
	var str = args.Value;
	if(str.length >= 6)
		args.IsValid = true;
	else
		args.IsValid = false;
}