";
if(oForm.txtLogoUrl.value.match(/^https?\:\/\/.*\/.*/)){
document.images["imgLogoUrl"].src = oForm.txtLogoUrl.value;
}
}
// HTML-encodes certain characters.
function htmlEncode(str){
// replace all ' with ' and all " with "
// also all < with < and all > with >
// but first all & with &
return String(str)
.replace(/\&/g, "&")
.replace(/\/g, ">")
.replace(/\'/g, "")
.replace(/\"/g, "")
;
}
function form_onsubmit(){
buildHtml();
}
var txtLogoUrl_timerID = 0;
function txtLogoUrl_onKeyPress(){
if(txtLogoUrl_timerID){
window.clearTimeout(txtLogoUrl_timerID);
txtLogoUrl_timerID = 0;
}
txtLogoUrl_timerID = window.setTimeout("buildHtml();", 500);
}
//-->/]]>