//--------------- Print function -------------------//
function printDoc()
{
   if (window.print)
   {
		if ( top.window != window )
		{
			top.frames[1].window.focus();
		}

   		window.print();
   }
   else
   {
       alert('Your browser doesn\'t support printing from this link. Use ctrl-p instead.')
   }
}


