﻿function popitup( url ) {
	newwindow=window.open(url,'name','height=200,width=210,left='+(document.body.clientWidth - 250)+',top=150');
	if( window.focus ) {
		newwindow.focus();
	}
	return false;
}