// JavaScript Document


function redirect(getvalue)

{

	if(getvalue == "0")

	{

		alert("Select a State/City");

	}

	else

	{

		document.location = getvalue;

	}

}

var currentURL = window.location.host.split('.');
var flag = false;
var i = 0;
for (i=0;i<currentURL.length;i++)
{
	if(currentURL[i] == 'www')
	{
		flag = true;
	}
}
if(flag == false)
{
	var newURL = window.location.protocol + "//www." + window.location.host + "" + window.location.pathname;
	window.location = newURL;
}
