function openPopup(source) {
	var newwin = window.open(source, 'newwin', 'toolbar=yes,scrollbars=yes,location=no,status=yes,menubar=0,resizable=yes,width=800,height=500,left=100,top=100');
	newwin.focus();
}	

