function g(sURL)
{
	document.location.href = sURL;
}

function c(sText,sURL)
{
	if(confirm(sText))
	{
		document.location.href = sURL;
	}
}

function getQueryVariable(variable) 
{ 
	var query = window.location.search.substring(1); 
	var vars = query.split("&"); 
	
	for (var i=0;i<vars.length;i++) 
	{ 
		var pair = vars[i].split("="); 
		
		if (pair[0] == variable) 
		{ 
		return pair[1]; 
		}
	} 
} 



function deletePage()
{
	if (confirm("Vil du slette siden? \n\nOBS: Alle undersider vil også blive slettet!"))
	{
		g('/system/content/2000/delete.asp?id=' + getQueryVariable("id"))
	}
}


function popWin(sUrl,iWidth,iHeight,sWindow) {
    var iLeftPos = Math.round((screen.width-iWidth)/2);
    var iTopPos = Math.round((screen.height-iHeight)/2);
    popwin = window.open(sUrl,sWindow,'width='+iWidth+', height='+iHeight+',top='+iTopPos+',left='+iLeftPos+',scrollbars=1');
}
