<!--
var thisURL = new String(document.URL);
var topURL = new String(top.document.URL);
thisURL = thisURL.toLowerCase();
topURL = topURL.toLowerCase();

var baseURL = "http://www.fenestra.com/";

var shortURL = thisURL.split(baseURL)[1];
if (topURL.valueOf()==thisURL.valueOf())
	top.document.location.href=baseURL+"default.asp?"+shortURL;
//-->