function confirmGoTo(msg, link)
{
	var confirmBool;
	
	confirmBool = confirm(msg);
	if (confirmBool)
	{
		document.location.href = link;
	}
	
}
var newwindows;
function poptasticen(url, height, width)
{
	
		newwindows=window.open(url,'name','height='+height +',width='+width+',left=100,top=100,resizable=yes,scrollbars=no,toolbar=no,status=no');
		if (window.focus) {newwindows.focus()}
	
}

function setStatusTxt(txt)
{
   window.status = txt;
}

