function Popup(filename){
   popup=window.open(filename ,"Info","left=10,top=10,width=800,height=520,scrollbars=yes,toolbar=no,location=no,menubar=yes,resizable=yes");
   popup.focus();
}

function PrintVersion(linkobj){
	filename = linkobj.href;
	p = Popup (filename);
	return false;
	linkobj.blur();
}
