 function popupNarrow(){
 var x=550;
 var y=410;
 var xPos = Math.round( (screen.width/2) - (x/2) ) + 120;
 var yPos = Math.round( (screen.height/2) - (y/2) );
 var winIntro =
 window.open('','popup','location=no,menubar=no,toolbar=no,resizable=yes,scrollbars=yes,width=' + x + ',height=' + y + ',left=' + xPos + ',top=' +yPos + ',screenX=' + xPos + ',screenY=' + yPos, true);
 }


 


