﻿// JScript File
function NewLocation (url)
{
	document.location.href = url;
}

function NewWin(url,WinName,w,h) {
	//Åbner et nyt vindue og centrere det på skærmen
	LeftPosition = (screen.width) ? (screen.width-w)/2 : 0;
	TopPosition = (screen.height) ? (screen.height-h)/2 : 0;
	CenterWin = ",top='+TopPosition+',left='+LeftPosition+'"
	NewWindow = window.open(url,WinName,'width='+w+',height='+h+',top='+TopPosition+',left='+LeftPosition);
	NewWindow.focus();
}
