Sure - At first, as in the first posting, I was pulling the same preview window code that comes with the forums, which is this...
function OpenPreviewWindow(targetPage, formName){
now = new Date
//Open the window first
openWin('','preview','toolbar=0,location=0,status=0,menubar=0,scrollbars=1,resizable=1,width=680,height=400')
//Now submit form to the new window
formName.action = targetPage + "?ID=" + now.getTime();
formName.target = "preview";
formName.submit();
}
Since then, I've made a different copy of it, that doesn't add the time ID for cache purposes. I made it as simple as possible, renamed the functionand the respective calling code, and here that replacement is... (which, btw, didn't help either)
function OpenPoemPreview(targetPage, formName){
openWin('','preview','toolbar=0,location=0,status=0,menubar=0,scrollbars=1,resizable=1,width=680,height=400')
formName.action = targetPage
formName.target = "preview";
formName.submit();
}
Btw.. I do appreciate all of your help looking at this, fernan82 - one day I hope to have a site member gathering, and I'll have to send you an invite so I can buy ya a brew!
<EDIT> I'm getting the actual preview code together so I can post that, too. I can't see any possible reason it should affect it, but hey, if I had the answers, I wouldn't be here right now LOL
Edited by Munk