if (document.location.href.indexOf('http://www.') == -1 && document.location.href.indexOf('file:///') == -1) {
	newUrl = "http://www." + document.location.href.substring(7,document.location.href.length);
	document.location.href = newUrl;
}