function startOdysseyNet(lcUrl)
{
	/*
		Calculate position and size of odysseynet window
		- Set's the window width to 800
		- Set's the window height to a max of 800 if (600 < availheight < 800) -> height = availHeigh - 50
	*/
	var nHeight=screen.availHeight-50;
	if (screen.availHeight <= 600)
	{
		nHeight	= screen.availHeight;
	}
	if (screen.availHeight >= 800)
	{
		nHeight	= 800;
	}
	
	var nTop = (screen.availHeight-nHeight)/2;
	var nLeft = (screen.availWidth-800)/2;
	window.open(lcUrl,'OdysseyNet','resizable=yes,scrollbars=yes,toolbar=no,location=no,directories=no,status=yes,menubar=no,copyhistory=no,left=' + nLeft + ',top=' +  nTop + ',height=' + nHeight + ',width=800');
}
function startWebShop(lcUrl)
{
	/*
		Calculate position and size of odysseynet window
		- Set's the window width to 800
		- Set's the window height to a max of 800 if (600 < availheight < 800) -> height = availHeigh - 50
	*/
	var nHeight=screen.availHeight-50;
	if (screen.availHeight <= 600)
	{
		nHeight	= screen.availHeight;
	}
	if (screen.availHeight >= 800)
	{
		nHeight	= 800;
	}
	
	var nTop = (screen.availHeight-nHeight)/2;
	var nLeft = (screen.availWidth-800)/2;
	window.open(lcUrl,'OdysseyESHop','resizable=yes,scrollbars=yes,toolbar=no,location=no,directories=no,status=yes,menubar=no,copyhistory=no,left=' + nLeft + ',top=' +  nTop + ',height=' + nHeight + ',width=800');
}
