function forwardTo(url) {

	if ( url!="" ) {
		location.href=url;
	}
}

function tellAFriend()
{
	msgWindow = window.open("/web/CodanTipEnVen/TipEnVenServlet?url="+escape(document.location.href), 'new', 'resizable=no, scrollbars=yes, screenX=200, screenY=3, top=5, left=200, width=400, height=560');
	msgWindow.focus();			
}

function dictionary(id) {

	var msgBoxWidth = 470;
	var msgBoxHeight = 470;
	var xPos = 100;
	var yPos = 100;
	if(window.screen) {

		xPos = (screen.width-msgBoxWidth)/2;
		yPos = (screen.height-msgBoxHeight)/2;
	}
	
	var features = "status=0,width="+msgBoxWidth+",left="+xPos+",height="+msgBoxHeight+",top="+yPos+",scrollbars=0,titlebar=0,alwaysRaised=1,modal=1";
	msgWindow = window.open("/web/CodanDictionaryWeb/dictionary/render.do?id="+id, "Ordbog", features, msgBoxWidth, msgBoxHeight);
	msgWindow.focus();			
}

function expand(componentid) {

	document.getElementById(componentid+'thin').style.display='none';
	document.getElementById(componentid+'full').style.display='block';
	
	Instadia_sendEvent('01021', document.title + ' - fold ud');	
}

function shrink(componentid) {

	document.getElementById(componentid+'thin').style.display='block';
	document.getElementById(componentid+'full').style.display='none';
}

