function alone(){

var loc = location.pathname;

if(loc.match("index.html") == null) 
{
	window.location = "./index.html?page=" + loc.substring(loc.lastIndexOf('/') + 1);
}


}
