function ObjetoSelect(){
this.id="";
this.name="";
this.selected="false";
this.onclick="";
this.onchange="";
this.disabled="";
this.arrayOption=new Array();
}
function getHTMLSelect(){
var _1="";
var _2=0;
_1="<SELECT";
if(this.id!=""){
_1=_1+" id=\""+this.id+"\"";
}
if(this.name!=""){
_1=_1+" name=\""+this.name+"\"";
}
if(this.onclick!=""){
_1=_1+" onclick=\""+this.onclick+"\"";
}
if(this.onchange!=""){
_1=_1+" onchange=\""+this.onchange+"\"";
}
if(this.selected!=""){
_1=_1+" selected=\""+this.selected+"\"";
}
if(this.disabled!=""){
_1=_1+" disabled=\""+this.disabled+"\"";
}
_1=_1+">";
if(this.arrayOption!=null){
_2=this.arrayOption.length;
for(var i=0;i<_2;i++){
_1=_1+this.arrayOption[i].getHTML();
}
}
_1=_1+"</SELECT>";
return _1;
}
ObjetoSelect.prototype.getHTML=getHTMLSelect;
function ObjetoOption(){
this.value="";
this.text="";
}
function getHTMLOption(){
var _4="";
_4="<OPTION";
if(this.value!=""){
_4=_4+" value=\""+this.value+"\"";
}
_4=_4+">";
if(this.text!=""){
_4=_4+this.text;
}
_4=_4+"</OPTION>";
return _4;
}
ObjetoOption.prototype.getHTML=getHTMLOption;
function ObjetoRadio(){
this.id="";
this.value="";
this.name="";
this.checked="";
this.onclick="";
this.disabled="";
}
function getHTMLRadio(){
var _5="";
_5="<INPUT TYPE=\"RADIO\"";
if(this.id!=""){
_5=_5+" id=\""+this.id+"\"";
}
if(this.value!=""){
_5=_5+" value=\""+this.value+"\"";
}
if(this.name!=""){
_5=_5+" name=\""+this.name+"\"";
}
if(this.onclick!=""){
_5=_5+" onclick=\""+this.onclick+"\"";
}
if(this.checked!=""){
_5=_5+" checked=\""+this.checked+"\"";
}
if(this.disabled!=""){
_5=_5+" disabled=\""+this.disabled+"\"";
}
_5=_5+">";
return _5;
}
ObjetoRadio.prototype.getHTML=getHTMLRadio;
function ObjetoImg(){
this.src="";
this.width="";
this.height="";
this.vspace="";
this.border="";
this.id="";
this.name="";
this.onclick="";
this.alt="";
}
function getHTMLImg(){
var _6="";
var _7=0;
_6="<IMG";
if(this.id!=""){
_6=_6+" id=\""+this.id+"\"";
}
if(this.name!=""){
_6=_6+" name=\""+this.name+"\"";
}
if(this.onclick!=""){
_6=_6+" onclick=\""+this.onclick+"\"";
}
if(this.src!=""){
_6=_6+" src=\""+this.src+"\"";
}
if(this.width!=""){
_6=_6+" width=\""+this.width+"\"";
}
if(this.height!=""){
_6=_6+" height=\""+this.height+"\"";
}
if(this.vspace!=""){
_6=_6+" vspace=\""+this.vspace+"\"";
}
if(this.border!=""){
_6=_6+" border=\""+this.border+"\"";
}
if(this.alt!=""){
_6=_6+" alt=\""+this.alt+"\"";
}
_6=_6+">";
return _6;
}
ObjetoImg.prototype.getHTML=getHTMLImg;
function ObjetoSpan(){
this.id="";
this.text="";
this.valign="";
this.estilo="";
this.onclick="";
}
function getHTMLSpan(){
var _8="";
var _9;
_8="<SPAN";
if(this.id!=""){
_8=_8+" id=\""+this.id+"\"";
}
if(this.estilo!=""){
_8=_8+" class=\""+this.estilo+"\"";
}
if(this.onclick!=""){
_8=_8+" onclick=\""+this.onclick+"\"";
}
_8=_8+">";
if(this.text!=""){
_8=_8+this.text;
}
_8=_8+"</SPAN>";
return _8;
}
ObjetoSpan.prototype.getHTML=getHTMLSpan;
function ObjetoTd(){
this.id="";
this.text="";
this.background="";
this.width="";
this.align="";
this.valign="";
this.height="";
this.estilo="";
this.colspan="";
this.onclick="";
}
function getHTMLTd(){
var _a="";
var _b;
_a="<TD";
if(this.id!=""){
_a=_a+" id=\""+this.id+"\"";
}
if(this.background!=""){
_a=_a+" background=\""+this.background+"\"";
}
if(this.width!=""){
_a=_a+" width=\""+this.width+"\"";
}
if(this.align!=""){
_a=_a+" align=\""+this.align+"\"";
}
if(this.valign!=""){
_a=_a+" valign=\""+this.valign+"\"";
}
if(this.height!=""){
_a=_a+" height=\""+this.height+"\"";
}
if(this.estilo!=""){
_a=_a+" class=\""+this.estilo+"\"";
}
if(this.colspan!=""){
_a=_a+" colspan=\""+this.colspan+"\"";
}
if(this.onclick!=""){
_a=_a+" onclick=\""+this.onclick+"\"";
}
_a=_a+">";
if(this.text!=""){
_a=_a+this.text;
}
_a=_a+"</TD>";
return _a;
}
ObjetoTd.prototype.getHTML=getHTMLTd;
function ObjetoTr(){
this.id="";
this.arrayTd=new Array();
this.arrayTdHtml=new Array();
this.estilo="";
}
function getHTMLTr(){
var _c="";
var _d;
_c="<TR";
if(this.id!=""){
_c=_c+" id=\""+this.id+"\"";
}
if(this.estilo!=""){
_c=_c+" class=\""+this.estilo+"\"";
}
_c=_c+">";
if(this.arrayTd!=null){
_d=this.arrayTd.length;
for(var i=0;i<_d;i++){
_c=_c+this.arrayTd[i].getHTML();
}
}
if(this.arrayTdHtml!=null){
_d=this.arrayTdHtml.length;
for(var i=0;i<_d;i++){
_c=_c+this.arrayTdHtml[i];
}
}
_c=_c+"</TR>";
return _c;
}
ObjetoTr.prototype.getHTML=getHTMLTr;
function ObjetoTable(){
this.id="";
this.border="";
this.arrayTr=new Array();
this.arrayTrHtml=new Array();
this.cellspacing="";
this.cellpadding="";
this.width="";
this.align="";
this.estilo="";
}
function getHTMLTable(){
var _f="";
var num;
_f="<TABLE";
if(this.id!=""){
_f=_f+" id=\""+this.id+"\"";
}
if(this.border!=""){
_f=_f+" border=\""+this.border+"\"";
}
if(this.cellspacing!=""){
_f=_f+" cellspacing=\""+this.cellspacing+"\"";
}
if(this.cellpadding!=""){
_f=_f+" cellpadding=\""+this.cellpadding+"\"";
}
if(this.width!=""){
_f=_f+" width=\""+this.width+"\"";
}
if(this.align!=""){
_f=_f+" align=\""+this.align+"\"";
}
if(this.estilo!=""){
_f=_f+" class=\""+this.estilo+"\"";
}
_f=_f+">";
if(this.arrayTr!=null){
num=this.arrayTr.length;
for(var i=0;i<num;i++){
_f=_f+this.arrayTr[i].getHTML();
}
}
if(this.arrayTrHtml!=null){
num=this.arrayTrHtml.length;
for(var i=0;i<num;i++){
_f=_f+this.arrayTrHtml[i];
}
}
_f=_f+"</TABLE>";
return _f;
}
ObjetoTable.prototype.getHTML=getHTMLTable;
function ObjetoCheckBox(){
this.id="";
this.value="";
this.name="";
this.onclick="";
this.checked="";
}
function getHTMLCheckBox(){
var _12="";
_12="<INPUT TYPE=\"CHECKBOX\"";
if(this.id!=""){
_12=_12+" id=\""+this.id+"\"";
}
if(this.value!=""){
_12=_12+" value=\""+this.value+"\"";
}
if(this.name!=""){
_12=_12+" name=\""+this.name+"\"";
}
if(this.onclick!=""){
_12=_12+" onclick=\""+this.onclick+"\"";
}
if(this.checked!=""){
_12=_12+" checked=\""+this.checked+"\"";
}
_12=_12+">";
return _12;
}
ObjetoCheckBox.prototype.getHTML=getHTMLCheckBox;
function ObjetoA(){
this.id="";
this.href="";
this.text="";
this.estilo="";
}
function getHTMLA(){
var _13="";
_13="<A";
if(this.id!=""){
_13=_13+" id=\""+this.id+"\"";
}
if(this.href!=""){
_13=_13+" href=\""+this.href+"\"";
}
if(this.estilo!=""){
_13=_13+" class=\""+this.estilo+"\"";
}
_13=_13+">";
if(this.text!=""){
_13=_13+this.text;
}
_13=_13+"</A>";
return _13;
}
ObjetoA.prototype.getHTML=getHTMLA;
function ObjetoText(){
this.id="";
this.value="";
this.size="";
this.maxlength="";
}
function getHTMLText(){
var _14="";
_14="<INPUT TYPE=\"TEXT\"";
if(this.id!=""){
_14=_14+" id=\""+this.id+"\"";
}
if(this.value!=""){
_14=_14+" value=\""+this.value+"\"";
}
if(this.size!=""){
_14=_14+" size=\""+this.size+"\"";
}
if(this.maxlength!=""){
_14=_14+" maxlength=\""+this.maxlength+"\"";
}
_14=_14+">";
return _14;
}
ObjetoText.prototype.getHTML=getHTMLText;

