I need to suppress the URL that comes out when I print a popup page. Is there a way to do that? Here is the function that creates and prints the page:
Can someone help with this? TIA.
Code:
function startFax(theForm) {
newwindow=window.open("","printwin","height=450,width=600");
newwindow.document.write("<body onload='window.focus();window.print()'>"+theForm.faxdata.value+"</body>");
newwindow.document.close();
newwindow.close();
}