//Generating Pop-up Print Preview page

function getPrint(print_area)

{ 

//Creating new page

var pp = window.open('','','resizable=false,scrollbars=false,status=false,toolbar=false');

//Adding HTML opening tag with <HEAD> … </HEAD> portion 

pp.document.writeln('<HTML dir=rtl><HEAD><title>')
pp.document.writeln(document.title);
pp.document.writeln('</title>')
pp.document.writeln('<meta http-equiv="Content-Type" content="text/html; charset=windows-1256">')
pp.document.writeln('<LINK href=Styles.css type="text/css" rel="stylesheet">')

pp.document.writeln('<LINK href="/CustomsNew/include/PrintStyle.css" type="text/css" rel="stylesheet" media="print">')

pp.document.writeln('<base target="_self"></HEAD>')

//Adding Body Tag

pp.document.writeln('<body MS_POSITIONING="GridLayout" bottomMargin="0"');

pp.document.writeln(' leftMargin="0" topMargin="0" rightMargin="0">');

//Adding form Tag

pp.document.writeln('<form method="post">');

//Creating two buttons Print and Close within a HTML table

pp.document.writeln('<TABLE width=100%><TR><TD></TD></TR><TR><TD align=right>');

pp.document.writeln('<INPUT ID="PRINT" type="button" value="Print" ');

pp.document.writeln('onclick="javascript:location.reload(true);window.print();">');

pp.document.writeln('<INPUT ID="CLOSE" type="button" value="Close" onclick="window.close();">');

pp.document.writeln('</TD></TR><TR><TD align=center>')
pp.document.writeln(document.title);
pp.document.writeln('</TD></TR></TABLE>');

//Writing print area of the calling page

pp.document.writeln(document.getElementById(print_area).innerHTML);

//Ending Tag of </form>, </body> and </HTML>

pp.document.writeln('</form></body></HTML>'); 

} 
function ShowIconHand()
{
	window.event.srcElement.style.cursor="hand";
}
function FP_swapImgRestore() {//v1.0
 var doc=document,i; if(doc.$imgSwaps) { for(i=0;i<doc.$imgSwaps.length;i++) {
  var elm=doc.$imgSwaps[i]; if(elm) { elm.src=elm.$src; elm.$src=null; } } 
  doc.$imgSwaps=null; }
}

function FP_swapImg() {//v1.0
 var doc=document,args=arguments,elm,n; doc.$imgSwaps=new Array(); for(n=2; n<args.length;
 n+=2) { elm=FP_getObjectByID(args[n]); if(elm) { doc.$imgSwaps[doc.$imgSwaps.length]=elm;
 elm.$src=elm.src; elm.src=args[n+1]; } }
}

function FP_preloadImgs() {//v1.0
 var d=document,a=arguments; if(!d.FP_imgs) d.FP_imgs=new Array();
 for(var i=0; i<a.length; i++) { d.FP_imgs[i]=new Image; d.FP_imgs[i].src=a[i]; }
}

function FP_getObjectByID(id,o) {//v1.0
 var c,el,els,f,m,n; if(!o)o=document; if(o.getElementById) el=o.getElementById(id);
 else if(o.layers) c=o.layers; else if(o.all) el=o.all[id]; if(el) return el;
 if(o.id==id || o.name==id) return o; if(o.childNodes) c=o.childNodes; if(c)
 for(n=0; n<c.length; n++) { el=FP_getObjectByID(id,c[n]); if(el) return el; }
 f=o.forms; if(f) for(n=0; n<f.length; n++) { els=f[n].elements;
 for(m=0; m<els.length; m++){ el=FP_getObjectByID(id,els[n]); if(el) return el; } }
 return null;
}