  ////---------------------------//// 
 //    Popup.js					  //  © 2004 Thijs Putman (info@tphnet.com), alle rechten voorbehouden.
////---------------------------////

  //////
 // Function popUp(URL, Name, Width, Height)
//////

function popUp(url, name, width, height)
{

	var url;
	var name;
	var width;
	var height;

	window.open(url, name, 'width='+width+',height='+height);
}