/*gather initialization stuff here*/
function init() {
ieIframeWidthBugWorkaround();
}
/*workaround for ie display bug with frames*/
function ieIframeWidthBugWorkaround() {
if (document.all) {
if (top != self) {
aWidth = document.body.offsetWidth - 20;
document.body.style.setAttribute("width", aWidth+"px", "false");
}
}
}