timeout =0; // Close window after __ number of seconds?
// 0 = do not close, anything else = number of seconds

function _OpenText(strText, intWidth, intHeight) {
windowprops = "left=0,top=0,width=" + (intWidth) + ",height=" + (intHeight+0);

    text = "<html><head><title>Talkback Viewer</title><META HTTP-EQUIV='imagetoolbar' CONTENT='no'></head>";
    text += "<body text='black' leftmargin='0' topmargin='0' marginwidth='0' marginheight='0' bgcolor='#FFFFFF'>";   
    text += strText;
    text += "</body></html>";

preview = window.open("", "preview", windowprops, scrollbar="no");
preview.document.open();
preview.document.write(text);
preview.document.close();
}