
// Thanks to xxxxxxxx.co for guidance about this
function popitup(url) {
	newwindow=window.open(url,'name','top=300,left=300,height=200,width=300');
	if (window.focus) {newwindow.focus()}
	return false;
}

