var newwindow;
function popupA(url)
{
	newwindow=window.open(url,'name','height=600,width=800,top=1,left=1,scrollbars=yes,resize=no');
	if (window.focus) {newwindow.focus()}
}
