function popitup(text) {
	newwindow=window.open('','Description','height=200,width=300');
	newwindow.document.write(text);
	if (window.focus) {newwindow.focus()}
	return false;
}