

function newWin(address, frameWidth, frameHeight) 

{

var dimensions="resizable=yes, toolbar=yes, menubar=yes, status=yes, width="+frameWidth+", height="+frameHeight+", address=1, scrollbars=yes, location=yes";

 

            NewWin=window.open(address, 'NewWin', dimensions );

            //NewWin.moveTo(screen.width/2-frameWidth/2-40,screen.height/2-frameHeight/2);

            NewWin.focus();

                        

}


