
function popitup(url) {
	newwindow=window.open(url,'Info','height=600, width=666, scrollbars=1');
	if (window.focus) {newwindow.focus()}
	return false;
}


function popitup2(url) {
	newwindow=window.open(url,'name','height=400, width=700, scrollbars=0');
	if (window.focus) {newwindow.focus()}
	return false;
}

