function printpage() {
window.print();  
}

<!--
// Nannette Thacker http://www.shiningstar.net
function confirmDeleteCountry()
{
var agree=confirm("Before deleting a country, \nplease take a look at the list of all countries. \nPress ok to proceed.");
if (agree)
	return true ;
else
	return false ;
}
// -->
<!--
// Nannette Thacker http://www.shiningstar.net
function confirmDelete()
{
var agree=confirm("Delete?");
if (agree)
	return true ;
else
	return false ;
}
// -->

function blocking(nr)
{
	if (document.layers)
	{
		current = (document.layers[nr].display == 'none') ? 'block' : 'none';
		document.layers[nr].display = current;
	}
	else if (document.all)
	{
		current = (document.all[nr].style.display == 'none') ? 'block' : 'none';
		document.all[nr].style.display = current;
	}
	else if (document.getElementById)
	{
		vista = (document.getElementById(nr).style.display == 'none') ? 'block' : 'none';
		document.getElementById(nr).style.display = vista;
	}
}

//show content
function showcontent() {
	
var myWidth = 0, myHeight = 0; var height = 0;
	  if( typeof( window.innerWidth ) == 'number' ) {
		//Non-IE
		//for moz, firefox, opera, safari
		myWidth = window.innerWidth;
		myHeight = window.innerHeight;
		height = myHeight-162;//-150
	  } else if( document.documentElement &&
		  ( document.documentElement.clientWidth || document.documentElement.clientHeight ) ) {
		//IE 6+ in 'standards compliant mode'
		myWidth = document.documentElement.clientWidth;
		myHeight = document.documentElement.clientHeight;
		height = myHeight-162;//-140
	  } else if( document.body && ( document.body.clientWidth || document.body.clientHeight ) ) {
		//IE 4 compatible
		//for ie
		myWidth = document.body.clientWidth;
		myHeight = document.body.clientHeight;
		height = myHeight-161;//-125
	  }
	//window.alert( 'Height= ' + myHeight );
	//document.write('<td class="content" height="100%">');
	//window.alert( 'height= ' + height );
	if( typeof( window.innerWidth ) == 'number' ) {
		//for moz, firefox, opera, safari
		
		document.write('<div style="padding-top: 0px; padding-right: 15px; height: ' + height +'px; overflow: auto;">');
	} else {
		//for ie
		//document.write('<div style="height: ' + height +'px;">');
		
		document.write('<div style="padding-top: 15px; padding-right: 15px; height: ' + height +'px; overflow: auto;">');
	}
}

//show content
function closecontent() {
	
	document.write('</div>');
}

/*DW scripts*/

function MM_jumpMenu(targ,selObj,restore){ //v3.0
  eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");
  if (restore) selObj.selectedIndex=0;
}

function MM_findObj(n, d) { //v4.01
  var p,i,x;  if(!d) d=document; if((p=n.indexOf("?"))>0&&parent.frames.length) {
    d=parent.frames[n.substring(p+1)].document; n=n.substring(0,p);}
  if(!(x=d[n])&&d.all) x=d.all[n]; for (i=0;!x&&i<d.forms.length;i++) x=d.forms[i][n];
  for(i=0;!x&&d.layers&&i<d.layers.length;i++) x=MM_findObj(n,d.layers[i].document);
  if(!x && d.getElementById) x=d.getElementById(n); return x;
}

function MM_jumpMenuGo(selName,targ,restore){ //v3.0
  var selObj = MM_findObj(selName); if (selObj) MM_jumpMenu(targ,selObj,restore);
}

function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}


