

function createObject(id) {
    return document.getElementById(id);
}

function browser(strFile, intWidth, intHeight) {
  var desktop;
  if (desktop && desktop.location) desktop.close();
  desktop = window.open(strFile, "_blank","toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=0,width=" + intWidth + ",height=" + intHeight);
}

function ImportantNotice() {
    ContinueOrder();
    
    /*createObject('maskLayer').style.display = 'block';
    createObject('noticecontent').style.display = 'block';
    beginneon()
    
    document.getElementById('noticecontent').style.top = document.body.clientHeight/2 -  75 + 'px';
    document.getElementById('noticecontent').style.left = document.body.clientWidth/2 - 150 + 'px';*/
}

function ContinueOrder() {
    createObject('f1').submit();
    createObject('maskLayer').style.display = 'none';
    createObject('noticecontent').style.display = 'none';
}