function bar(txt)
{
	self.status = txt;
}

function c()
{
	self.status = "";
}

function openLink(url)
{
	var link;
	
	if(document.optionform.nw.checked)
	{
		link = window.open(url, "link", "toolbar=yes,location=yes,directories=yes,status=yes, menubar=yes,scrollbars=yes,resizable=yes,copyhistory=yes,width=" + screen.width + ",height=" + screen.height);
		link.focus();
	}
	else
		window.location.href = url;
}

function popupPic(url, name, description, width, height)
{
	var picview;
	
	width += 100;
	height += /* 75 */ 110;

	picview = window.open("picview.asp?name=" + name + "&desc=" + description + "&url=" + url, "picview", "toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=no,copyhistory=no,width=" + width + ",height=" + height);
	picview.resizeTo(width, height);
	picview.focus();
}
