function popup(url,width,height)
	{
		newWin = window.open(url, 'poppupp', 'width='+ width +',height='+ height +',toolbar=0,menubar=0,location=0,scrollbars=1,resizable=1,history=0,directories=0');
		newWin.focus();
	}
