function closePopUp()
{
	$('#overlay').hide();
	$('#content_inner').html('');
	$('#content_overlay').hide(); 
}

function closePopUpCookieOption(siteChoice)
{
	var saveVal = document.getElementById('defaultSelectionOption').checked;
	if(saveVal == true)
	{
		$.cookie('lang_pref',siteChoice,{expires: 3600, path: '/'});
	}
	if(siteChoice=='EN')
	{
		document.location.href='http://www.telecitygroup.nl/home-EN.htm';
	}
	if(siteChoice=='NL')
	{
		closePopUp();
	}
}
function lang_popup(spText){
	var newElement = document.createElement('div');
	newElement.setAttribute('id', 'overlay');
	document.getElementsByTagName('body')[0].appendChild(newElement);
	document.getElementById('overlay').style.display = 'block';

	newElement = document.createElement('div');
	newElement.setAttribute('id', 'popCont');
	newElement.innerHTML = '<table id="content_overlay"><tbody><tr><td><div class="clearfix" id="content"><div class="popup_close" style="display: block;"><img alt="Close" src="/GetImage.aspx.id-145454.gif"></div><div class="clearfix" id="content_inner"><div><div class="poup_box">'+spText+'</div></div></div></div></td></tr></tbody></table>';
	document.getElementsByTagName('body')[0].appendChild(newElement);
	$('#content_overlay').show();
}
