
function launchwindow(url, features) {
  window.open(url, "_blank", features);
}

function resize() {
if (screen.width > 1023)
        {
        window.moveTo(0,0);
        window.resizeTo( 1024,768 );
        }
}

// redirect if its a non windows user
// as macs don't like the filter style
if ((navigator.platform.indexOf("Win") == -1) && (navigator.platform.indexOf("google") == -1)  ) { window.location = "indexmac.html"; }


