// JavaScript Document
function printit(language){
  var lang = language;
  var win=window.open("","win", "width=779,height=400,scrollbars=yes,resizable=yes")
  win.document.open("text/html","replace");
  if(lang=='en') {
	  win.document.writeln("<link href='css/en.print.css' rel='stylesheet' type='text/css' />");
	  win.document.writeln("<style media=\"print\">.hide{display:none;}<\/style>");
	  win.document.writeln("<body onload='window.print(); return false;'>");
	  var topHeadText = '<h3>The Arab Investment &amp; Export Credit Guarantee Corporation<\/h3>www.dhaman.org';
  } else {
 	  win.document.writeln("<link href='css/ar.print.css' rel='stylesheet' type='text/css' />");
	  win.document.writeln("<style media=\"print\">.hide{display:none;}<\/style>");
	  win.document.writeln("<body onload='window.print(); return false;' dir='rtl'>");
	  var topHeadText = '<h3>المؤسسة العربية لضمان الإستثمار وائتمان الصادرات<\/h3>www.dhaman.org';
  }
  win.document.writeln("<color='#af2528'>"+topHeadText+"<\/font>");
  win.document.writeln("<hr color='#af2528' width='100%'>");
  win.document.writeln(document.getElementById("container").innerHTML);
  win.document.writeln("<hr color='#af2528' width='100%'>");

if(lang=='en') {
 	 win.document.writeln("<span class=\"hide\"><a href='javascript:print();'>Print<\/a> | <a href='javascript:self.close();'>Close<\/a><\/span>");
  } else {
	 win.document.writeln("<span class=\"hide\"><a href='javascript:print();'>الطبع<\/a> | <a href='javascript:self.close();'>إلغاء<\/a><\/span>");
  }

	win.document.writeln("<\/body>");
	win.document.close();
}

