// JavaScript Document Pop up Window to send page to a friend
  <!--
        function MM_openBrWindow(theURL,winName,features) { //v2.0
                    window.open(theURL,winName,features);
        }
   //-->

function showFile(strURL, dWidth, dHeight){
var popLeft = 0, popTop = 0;
if(screen.width) popLeft = (screen.width - dWidth) / 2;
if(screen.height) popTop = (screen.height - dHeight) / 2;
newapp = open(strURL,"What_it_is","resizable=1,status=350,location=0,scrollbars=1,width=" + dWidth + ",height=" + dHeight + ",left=" + popLeft + ",top=" + popTop);
	if(navigator.appName == "Netscape")
		newapp.focus();
}