﻿// JScript File
function print_page()
{
    var content;
    content = document.getElementById('ctl00_ContentPlaceholderMain_article_content').innerHTML;
    var url = document.getElementById('ctl00__environment').value;
    popUp(url+"print.aspx");
}
function popUp(URL)
{
    day = new Date();
    id = day.getTime();
    window.open(URL, '" + id + "', 'toolbar=0,scrollbars=1,location=0,statusbar=1,menubar=1,resizable=1,width=1024,height=700,left = 100,top = 100');
}
