var newwindow;
function popupA(url)
{
	newwindow=window.open(url,'name','height=600,width=800,scrollbars=no,resizable=no,toolbar=no,status=yes,location=no,menubar=no,left=1,top=1');
	if (window.focus) {newwindow.focus()}
}


function popupB(url)
{
	newwindow=window.open(url,'name','height=325,width=375,scrollbars=no,resizable=no,toolbar=no,status=yes,location=no,menubar=no,left=1,top=1');
	if (window.focus) {newwindow.focus()}
}
