function bookmarker(ank){
	var body = document.getElementsByTagName("body").item(0);
	var ankerTag = document.createElement("A");
	ankerTag.setAttribute("name", ank);
	body.appendChild(ankerTag);
	
	window.location.hash = ank;
	window.document.title = title;
}

function checkHash(){
	window.document.movie.SetVariable("_level0.hash", window.location.hash);
}

var title = window.document.title;