// JavaScript Document
window.onload=function()
	{
	Nifty("div.box","big");
	Nifty("div#box_enter","small");
	if (!document.getElementsByTagName) return;
	var anchors = document.getElementsByTagName("a");
	for (var i=0; i<anchors.length; i++) 
		{
		var anchor = anchors[i];
		if 
			(
			anchor.getAttribute("href") &&
			anchor.getAttribute("rel") == "external"
			)
			anchor.target = "_blank";
		}
	}

function popitup(url) 
	{
	newwindow=window.open(url,'name','height=400,width=600,scrollbars=1,menubar=1,resizable=1');
	if (window.focus) {newwindow.focus()}
	return false;
	}
