// function to open new windows

function popup(path, myWidth, myHeight) {

var attributes = "width=" + myWidth + ",height=" + myHeight + ",resizable=yes,scrollbars=yes,menubar=no,toolbar=no,status=no,location=no";

window.open(path, '', attributes);

}

function popupBasic(path, myWidth, myHeight) {

var attributes = "width=" + myWidth + ",height=" + myHeight + ",resizable=no,scrollbars=no,menubar=no,toolbar=no,status=no,location=no";

window.open(path, '', attributes);

}