function popUp(url, namn, h, w)
{
	var width=w;
	var height=h;
	attributes = 'height='+height+', width='+width+', resizable=0, scrollbars=1, left=412, top=84';
	props=window.open(url, namn, attributes);
}

function goTo(url)
{
	window.location=url;
}

