function validateURL(theform) {
 if (theform.url.value == "") { alert("No URL Provided"); return false; }
 return true;
}

function validateDomain(theform) {
 if (theform.domain.value == "") { alert("No Domain Provided"); return false; }
 return true;
}

function resizeIframe(sbox) {
 var theframe = document.getElementById(sbox);
 var the_height = (theframe.contentWindow.document.body.scrollHeight)-20;
 theframe.height = the_height;
}