|
Sel='';
function PrintSelected() {
if (window.frames.length == 0){
Sel=document.getSelection();
} else {
for (iy=0;iy<window.frames.length;iy++){
Fm=window.frames[iy];
Sel=Sel+Fm.document.getSelection();
}
}
var Opts='width=100,height=100'; PS_Pop=window.open('','PrintSel',Opts);
PS_Pop.document.write(Sel);
PS_Pop.document.close();
this.window.focus();
PS_Time=setTimeout("PrintSelected2()",1000);
}
function PrintSelected2() {
PS_Pop.window.print();
PS_Time=setTimeout("PrintSelected3()",5000);
}
function PrintSelected3() {
PS_Pop.window.close();
}
|