function print_friendly_view()
{
   var sOption="toolbar=yes,location=no,directories=yes,menubar=yes,"; 
       sOption+="scrollbars=yes,width=636,height=600,left=100,top=25,resizable=no,"; 

   var sWinHTML = document.getElementById('contentstart').innerHTML; 
   
   var winprint=window.open("","",sOption); 
       winprint.document.open(); 
       winprint.document.write('<html>'); 
       winprint.document.write('<head>'); 
	   
       winprint.document.write('<link rel="stylesheet" type="text/css" href="./../css/portlet.css"/>')       
       winprint.document.write('<link rel="stylesheet" type="text/css" href="./../css/newssite_style.css"/>')
       winprint.document.write('<link rel="stylesheet" type="text/css" href="./../css/layout.css"/>')
       winprint.document.write('<link rel="stylesheet" type="text/css" href="./../css/general_class.css"/>')       
       winprint.document.write('<link rel="stylesheet" type="text/css" href="./../css/font.css"/>')
       winprint.document.write('<link rel="stylesheet" type="text/css" href="./../css/clearfix.css"/>')

       winprint.document.write('</head>');   
       winprint.document.write('<body style="width:626px;">');
       winprint.document.write(sWinHTML);          
       winprint.document.write('</body></html>'); 
       winprint.document.close(); 
       winprint.focus(); 

}


