// Force pages to open properly in their framesets
if(top.location == self.location){
	top.location.href = "http://www.michaelsinger.com/index.html";
}

var urlValue = String(window.location);
//alert(urlValue.indexOf("www."));
if(urlValue.indexOf("www.") == -1){
	top.location.href = "http://www.michaelsinger.com/index.html";
}