<!--
//** Small Popup ***********************	
function smallPopup(url,target,myWidth,myHeight,scroll) {
var thereman = screen.width;
var hereman = screen.height;
var px = (thereman - 800) *.5-myWidth-10;
var py = (hereman - 550) *.3;
if (!scroll) scroll=0;
var myProp ="toolbar=no,resizable=no,status=yes,scrollbars="+scroll+",width="+myWidth+",height="+myHeight+",left=0,top=0";
var myProp0 ="toolbar=no,resizable=no,status=yes,scrollbars="+scroll+",width="+myWidth+",height="+myHeight+",left=0,top=0";

	if ( thereman > 800) {
	myWin=window.open(url,target,myProp);
	} else {
	myWin=window.open(url,target,myProp0);
	}
	myWin.focus();
}

// -->
