function setHeight(e){
if (e.Document && e.Document.body.scrollHeight) //ie5+ syntax
e.height = e.contentWindow.document.body.scrollHeight + 60;

else if (e.contentDocument && e.contentDocument.body.scrollHeight) //ns6+ & opera syntax
e.height = e.contentDocument.body.scrollHeight + 35;

else (e.contentDocument && e.contentDocument.body.offsetHeight) //standards compliant syntax – ie8
e.height = e.contentDocument.body.offsetHeight + 35;

if (e.height<600)
e.height = 650;

}
