//	function popup			
function popup(link,name,size)
{
	newwin = window.open(link,name,size);
	if (self.focus) newwin.focus();
}
