
 






var fontcode = '';
var fontface;
var fontsize;
var fontcolor;
var fontstyle;
var fontclass;
var textline;
var defaultdisplay;

if(defaultdisplay != undefined) {
fontcode = '';
if(fontface != undefined) {   
fontcode = fontcode + 'face=' + fontface + ' ';
}
if(fontsize != undefined) {   
fontcode = fontcode + 'size=' + fontsize + ' ';
}
if(fontcolor != undefined) {   
fontcode = fontcode + 'color=' + fontcolor + ' ';
}
if(fontstyle != undefined) {   
fontcode = fontcode + 'style=' + fontstyle + ' ';
}
if(fontclass != undefined) {   
fontcode = fontcode + 'class=' + fontclass + ' ';
}

document.write('<font ' + fontcode + '>' + defaultdisplay + '</font>');
}

