var newWin;

function view(url, w, h)
	{
	
	newWin = window.open(url,"popwin","height=" + h + ",width=" + w);
	newWin.resizeTo(w,h);

	if (window.focus) 
		{
		newWin.focus();
		}

	}
