<!--
function key(pass)
{
//configuration: you may change the html_ext to ".html"
var html_ext = ".html" //the file extension of the secured pages	
//configuration: the absolute or relative path to the protected pages
var path_to_secured_pages = "samples/" //don't forget the trailing slash
//end of conf.
var location = path_to_secured_pages+ pass + html_ext;
this.location.href = location
}
//-->