/* GENERIC POP-UP WINDOWS.  PARAMETERS: url, w=width, h=height ********/
function pop(url,w,h)
	{
		var ImageWin = null;
		ImageWin = window.open(url,'popWin','width='+w+',height='+h+',scrollbars=no,resizable, left=5, top=5');
		ImageWin.focus();
	}