    var new_window;
    function OpenWindow()
    {   
        if(new_window)
        {
            
            new_window.close(); 
        }
	var html = window.document.getElementsByTagName("html")[0].innerHTML;
	     

	//This script is added so that Print functionality works fine even if there is banner in our page
        var banner_script =   window.document.getElementById('banner_script');
        if(banner_script != null)
        {
              var bannerScriptContent = window.document.getElementById("banner_script").innerHTML
              html = html.replace(bannerScriptContent ," ");        
        }
            

        new_window = window.open(''+self.location,'_blank', 'scrollbars=yes,resizable=1,width=600,height=600' );
        new_window.focus();
	
        html = '<link href="/includes/styles/print.css"  rel="stylesheet" type="text/css"/>' + html ;
        new_window.document.write('<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html>' + html + '</html>');
        if(navigator.appName == "Microsoft Internet Explorer")
        {	                   
	       new_window.opener='X';
	       new_window.document.close();
	       new_window.print();             
	       window.setTimeout("new_window.close();","2000");               
        }
        else 
        {
		new_window.print();
                 new_window.close();
	        new_window.document.close();
        }
        html = ''; 
        return false;
    }

