/*
	Standaard Javascript functies
*/


/*
	Deze functie maakt een dialog aan.
*/

function Dialog (sUrl, iWidth, iHeight)
{
	var posX = (screen.width / 2) - (iWidth/2);
	var posY = (screen.height / 2) - (iHeight/2);
		
	dialog = window.open (sUrl, "dialog", "width="+iWidth+"px, height="+iHeight+"px; resizable: no");
	
	dialog.moveTo (posX, posY);
	dialog.name = 'popup';
	dialog.focus ();
	
	return true;
}


