 function popupNarrow(){
 var x=260;
 var y=410;
 var xPos = Math.round( (screen.width/2) - (x/2) ) + 80;
 var yPos = Math.round( (screen.height/2) - (y/2) );
 var winIntro =
 window.open('','popup','location=no,menubar=no,toolbar=no,resizable=yes,scrollbars=no,width=' + x + ',height=' + y + ',left=' + xPos + ',top=' +yPos + ',screenX=' + xPos + ',screenY=' + yPos, true);
 }

 function popupMedium(){
 var x=400;
 var y=410;
 var xPos = Math.round( (screen.width/2) - (x/2) ) + 80;
 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);
 }
 
 function popupWide(){
 var x=520;
 var y=410;
 var xPos = Math.round( (screen.width/2) - (x/2) ) + 80;
 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);
 } 
 
 function popupMarket(){
 var x=410;
 var y=550;
 var xPos = Math.round( (screen.width/2) - (x/2) ) + 80;
 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);
 }
