
// open a link in a new window
function newWindow()	{
	if (document.getElementsByTagName)	{
		var anchors = document.getElementsByTagName("a");
		for (var i=0; i < anchors.length; i++)	{
			var anchor = anchors[i];
			if (anchor.getAttribute("href") && anchor.getAttribute("rel") == "newWindow")	{
				anchor.target = "_blank";
			}
		}
	}
}

// adjust height of the contents
function adjustHeight()	{

	if (!document.getElementById || !screen.height) return false;
	var scrHeight = screen.height;
	
	var mainElement = document.getElementById("main");
	defHeight = (scrHeight - 415) + "px"
	mainElement.style.minHeight=defHeight;
}

window.onload = function()	{
	adjustHeight();
	newWindow();
}
