// JavaScript Document
//===============By Babar 14 Nov 2010 ============================
//For Redirection
var hsting=window.location.hostname;
var the_chars=hsting.charAt(0)+hsting.charAt(1)+hsting.charAt(2);
if(the_chars=='www')
	var myw="";
else
	var myw="www."
	
// Redirectiing
	if (myw !="")
	{
		var oldURL = myw + window.location.hostname + window.location.pathname+window.location.search;
		var newURL = "http://" + oldURL;
		//alert('Here is '+newURL);
		window.location = newURL;
	}
//==================================================================
