// JavaScript Document

function createWindow() {
    var URL = '/client/index.php';

    var features =
        'width=766'        +
        
        ',directories=no' +
        ',location=no'    +
        ',menubar=no'     +
        ',scrollbars=yes' +
        ',status=yes'     +
        ',toolbar=no'    +
        ',resizable=yes';

  window.open (URL, '_blank', features);
}


function createWindowVIP() {
	var URL = '/client/index.php?view=vip&code=' +  document.getElementById('code').value;

    var features =
        'width=766'       +
        ',directories=no' +
        ',location=no'    +
        ',menubar=no'     +
        ',scrollbars=yes' +
        ',status=yes'     +
        ',toolbar=no'     +
        ',resizable=yes';

  window.open (URL, '_blank', features);
}

function createWindowCalc() {
    var URL = '/client/example_standalone.php';

    var features =
        'width=774'       +
        ',directories=no' +
        ',location=no'    +
        ',menubar=no'     +
        ',scrollbars=yes' +
        ',status=yes'     +
        ',toolbar=no'     +
        ',resizable=yes';

  window.open (URL, '_blank', features);
}




function createWindowAccount() {
	var URL = '/client/index.php?view=createnewaccount';

    var features =
        'width=766'        +
        ',directories=no' +
        ',location=no'    +
        ',menubar=no'     +
        ',scrollbars=yes' +
        ',status=yes'     +
        ',toolbar=no'    +
        ',resizable=yes';

  window.open (URL, '_blank', features);
}
