function popupFacts(url) {
	newwindow=window.open(url,'name','height=645,width=335');
	if (window.focus) {newwindow.focus()}
	return false;
}

function popup(url) {
	newwindow=window.open(url,'name','height=335,width=645, resizable=1');
	if (window.focus) {newwindow.focus()}
	return false;
}