<!--
//Funktion som öppnar ett hjälpfönster och flyttar sidan till rätt anchor
//@param anchorName Namn på ankare
function OpenHelpWindow(anchorName)
{
	window.open('Help.aspx#' + anchorName, 'helpWindow', 'height=500,width=400,menubar=no,scrollbars=yes');
}

function OpenInfoWindow(anchorName)
{
	window.open('Info.aspx#' + anchorName, 'helpWindow', 'height=500,width=400,menubar=no,scrollbars=yes');
}

function OpenInfosmallWindow(anchorName)
{
	window.open('InfoSmall.aspx#' + anchorName, 'infoWindow', 'height=260,width=350,menubar=no,scrollbars=yes');
}
function OpenTermsWindow(anchorName)
{
	window.open('Terms.aspx#' + anchorName, 'termWindow', 'height=500,width=400,menubar=no,scrollbars=yes');
}
//-->

