﻿function PrintThisPage(DivName) 
{ 
   var sOption="toolbar=yes,location=no,directories=yes,menubar=yes,"; 
       sOption+="scrollbars=yes,resizable=yes,width=750,height=600,left=100,top=25"; 
   var sWinHTML = document.getElementById(DivName).innerHTML; 

   var winprint=window.open("","",sOption); 
       winprint.document.open(); 
       winprint.document.write('<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"><html xmlns="http://www.w3.org/1999/xhtml"><head><meta http-equiv="Content-Type" content="text/html; charset=utf-8" /><title>Cordea Savills</title><link href="css/Print.css" rel="stylesheet" type="text/css" /><!--[if IE 6]><link href="css/PrintIE6.css" rel="stylesheet" type="text/css" /><![endif]--></head><body>'); 

       winprint.document.write(sWinHTML); 
        
       winprint.document.write('</body></html>'); 
       winprint.document.close(); 
       winprint.focus(); 
}







