
// IFRAME resizer
onload = onresize = function() {
	if (parent) parent.document.getElementById("content").style.height=(document.body.offsetHeight)+"px";
//	window.scrollTo(0,400);
}

// IFRAME redirection
if (top==window) {
	var myurl = "/index.html?page="+location.pathname;
	if (typeof mynavID != "undefined") myurl = myurl + "&nav=" + mynavID;
	location.replace(myurl);
}	

