function Popup(url, width, height, name)
{
	var positionX = ((screen.availWidth / 2) - width / 2);
	var positionY = ((screen.availHeight / 2) - height / 2);

	popup = window.open('', name, 'toolbar=0, location=0, directories=0, status=0, menubar=0, ' +
					    'scrollbars=1, resizable=0, fullscreen=0, width=' + width + ', ' +
					    'height=' + height + ', top=' + positionY + ', left=' + positionX);

	popup.resizeTo(width, height);
	popup.location = url;
}

function SetLinkTarget(object)
{
	object.target = "_blank";
}
