﻿function PrintContent(element, title) {
    var DocumentContainer = document.getElementById(element);
    var WindowObject = window.open('', title,"width=740,height=325,top=200,left=250,toolbars=no,scrollbars=yes,status=no,resizable=no");
    WindowObject.document.writeln(DocumentContainer.innerHTML);
    WindowObject.document.close();
    WindowObject.focus();
    WindowObject.print();
    WindowObject.close();
  }

  function doSearch() {
    window.location = "Search.aspx?search=" + document.getElementById('txtKeywordSearch').value + "&cn=" + document.getElementById('txtCNSearch').value;
  }

  function ValidateControl(x) {
    x.Validate();
  }

