// JavaScript Document
	function winopen(url,stuff,morestuff)
	{
		var popwin = window.open(url,stuff,morestuff);
		if( typeof(popwin) != "undefined" && popwin )
		{
			popwin.focus();
		}
		lastPopup = popwin;
	}