function gE (id, owner) { return wuweiGetElement(id, owner); }
function gD (owner) { return wuweiGetDocument(owner); }

function gW (id, owner) { return wuweiGetStyle(id, 'width', owner); }
function gH (id, owner) { return wuweiGetStyle(id, 'height', owner); }
function gX (id, owner) { return wuweiGetStyle(id, 'left', owner); }
function gY (id, owner) { return wuweiGetStyle(id, 'top', owner); }

function sW (id, value, owner) { wuweiSetStyle(id, 'width', value, owner); }
//function sH (id, value, owner) { wuweiSetStyle(id, 'height', value, owner); }
function sH (id, value, owner) { xHeight(id, value); }
function sX (id, value, owner) { wuweiSetStyle(id, 'left', value, owner); }
function sY (id, value, owner) { wuweiSetStyle(id, 'top', value, owner); }

//function sE (id, owner) { wuweiSetStyle(id, 'visibility', 'visible', owner); }
//function hE (id, owner) { wuweiSetStyle(id, 'visibility', 'hidden', owner); }
function sE (id, owner) { xShow(id); }
function hE (id, owner) { xHide(id); }
function up (idPattern, nr, indexList) { wuweiBringUp(idPattern, nr, indexList); }
function hAll (idPattern, indexList) { wuweiBringUp(idPattern, -1, indexList); }

function gC (id, owner) { return wuweiGetContent(id, owner); }
function sC (id, html, owner) { wuweiSetContent(id, html, owner); }
function aC (id, html, owner) { wuweiAppendContent(id, html, owner); }

function gV (id, owner) { return wuweiGetValue(id, owner); }
function sV (id, value, owner) { wuweiSetValue(id, value, owner); }

function greyOut (observedElement, dependentElements) { wuweiGreyOut(observedElement, dependentElements); }
function setClass (id, className, owner) { wuweiSetClass(id, className, owner); }
function sel (id, value, owner) { wuweiSelect(id, value, owner); }
function rad (id, value, owner) { wuweiSetRadioValue(id, value, owner); }
function rVal (id, owner) { return wuweiRadioValue(id, owner); }

function on (id, owner) { wuweiDisable(id, 'on', owner); }
function off (id, owner) { wuweiDisable(id, 'off', owner); }

function tH () { return wuweiTotalHeight(); }
function submitt (form) { wuwinoSubmit(form); }
function ajax (script, scriptPara, responseHandler, responseHandlerPara) { wuweiAjax(script, scriptPara, responseHandler, responseHandlerPara); }

