// JavaScript Document

	function wopen(url, w, h)
	{
	// Fudge factors for window decoration space.
	 // In my tests these work well on all platforms & browsers.
	w += 20;
	h += 20;
	 var win = window.open(url,
	  'popup<?php echo md5(rand());?>',
	  'width=' + w + ', height=' + h + ', ' +
	  'location=no, menubar=no, ' +
	  'status=no, toolbar=no, scrollbars=auto, resizable=yes');
	 //win.resizeTo(w, h);
	 win.focus();
	}
