function popupWindow(page, name, width, height){
	return window.open(page, name, "toolbars=no, width="+width+", height="+height+", status=yes, scrollbars=1, top=20,left=200");
}

function popup(page){
	newWindow = popupWindow(page,'content',580,500);
	newWindow.focus();
}