function popup(theURL, Name) {
	winwidth=screen.width - 10;
	winheight=screen.height - 10;
	winProp = 'width='+winwidth+',height='+winheight+',left=5,top=5,toolbar=no,menubar=no,status=no,scrollbar=no,resizable=yes,location=no'
	Win = window.open(theURL, Name, winProp)
	Win.window.focus();
}