function writeContentLink(url,params,text) { if (url.indexOf('?') > -1) { w('' + text + ''); }else{ w('' + text + ''); } } function writeFormTag(url) { w('
'); } function writeNavLink(url,params,text) { if (url.indexOf('?') > -1) { w('' + text + ''); }else{ w('' + text + ''); } } function GoURL(url,params) { if (url.indexOf('?') > -1) { document.location = url + '&' + params; }else{ document.location = url + '?' + params; } } function w(s) { document.write(s); } function wl(s) { document.writeln(s); }