function popitup(url) {
	newwindow=window.open(url,'name','height=397,width=590');
	if (window.focus) {newwindow.focus()}
	return false;
}

function popthisup(url) {
	newwindow=window.open(url,'name','height=700,width=980');
	if (window.focus) {newwindow.focus()}
	return false;
}

