
var newwindow;


function popitup(url) {
	newwindow=window.open(url,'name','height=805,width=318,scrollbars=1,resizeable=1,top=50px,left=450px');
	if (window.focus) {newwindow.focus()}
	return false;
}

function popitup2(url) {
	newwindow=window.open(url,'name','height=577,width=300,top=200px,left=450px');
	if (window.focus) {newwindow.focus()}
	return false;
}
