// JavaScript Document
// v1.0 / B. Hillmann - bh@fivetones.de // (c) 2004

// opens popUp-windows screen-centered
function ft_popUp (url, w, h) {
  // set top and left window-position to center on user-screen
  var posL = (screen.width)  ? (screen.width - w)  / 2 : 0;
  var posT = (screen.height) ? (screen.height - h) / 2 : 0;

  // build settings-string
  var wSettings = 'height=' + h + ', width=' + w + ', top= ' + posT + ', left=' + posL + ', menubar=yes ,scrollbars=yes';
  var cWindow   = window.open (url, 'ft_popUp', wSettings);
}

// opens Spreadshirt-Shop in popUp-Window
function ft_spreadShop () {
  // set windows-size
  var w = 795; var h = 650;

  // set the Top and Left Windows-Position to center on user-screen
  var posL = (screen.width)  ? (screen.width - w)  / 2 : 0;
  var posT = (screen.height) ? (screen.height - h) / 2 : 0;

// build the "settings"-string for the agb-Window
  var wSettings = 'height=' + h + ', width=' + w + ', top= ' + posT + ', left=' + posL + ', menubar=yes ,scrollbars=yes';
  var cWindow   = window.open ('http://www.spreadshirt.de/shop.php?sid=40494', 'ft_sreadShop', wSettings);
}
