﻿// JScript File
function Print()
{ 
/*<!--
    toolbar = 0|1     - Specifies whether to display the toolbar in the new window.  
    location = 0|1    - Specifies whether to display the address line in the new window.  
    directories = 0|1 - Specifies whether to display the Netscape directory buttons.  
    status = 0|1      - Specifies whether to display the browser status bar.  
    menubar = 0|1     - Specifies whether to display the browser menu bar.  
    scrollbars = 0|1  - Specifies whether the new window should have scrollbars.  
    resizable = 0|1   - Specifies whether the new window is resizable.  
    width = pixels    - Specifies the width of the new window.  
    height = pixels   - Specifies the height of the new window.  
    top = pixels      - Specifies the Y coordinate of the top left corner of the new window. (Not   supported in version 3 browsers.)  
    left = pixels     - Specifies the X coordinate of the top left corner of the new window. (Not   supported in version 3 browsers.)  
-->
*/
    var display_setting = "toolbar=yes,location=no,directories=yes,menubar=yes,"; 
        display_setting += "scrollbars=yes,width=800, height=600, left=100, top=25"; 
    var content_value = document.getElementById("print_content").innerHTML; 

    var docprint=window.open("","",display_setting); 
	    docprint.document.open(); 
	    docprint.document.write('<html><head><title>Quickly Tryk A/S - Et grafisk hus der leverer kvalitet til tiden</title>'); 
	    docprint.document.write('<link rel="stylesheet" type="text/css" href="JavaScripts/DefaultForPrint.css" /></head><body onLoad="self.print()">');          
	    docprint.document.write(content_value);  
	    docprint.document.write('<br>Quickly Tryk A/S | Mose Allé 17 | 2610 Rødovre | Tlf: 36 70 55 80 | Fax: 36 70 59 50');        
	    docprint.document.write('</body></html>'); 
	    docprint.document.close(); 
	    docprint.focus(); 
}