  var pathArray = new Array();
  var pathArray = document.URL.split("/");
  pathArray.splice(-1,1);
  pathArray.splice(0,3);
  
function printPages(parentPageTitle) {
  var browser = navigator.appName;
  var win_opt= "toolbar=0,location=0,directories=0,status=0,menubar=1,";
  win_opt += "scrollbars=1,resizable=1,copyhistory=0,width=700",height=580;

  var newUrl = '/portal/page/portal/Products%20Applications/Verigy%20Printer%20Friendly?title='+parentPageTitle+'&path=/' + pathArray.join('/') + '/';
	//var newUrl = "/portal/page/portal/Products%20Applications/Verigy%20Printer%20Friendly?path=/" + pathArray.join("/") + "/";
  if(browser == "Microsoft Internet Explorer") {
    NewWindow= window.open(newUrl, "_blank", win_opt);
		//NewWindow= window.open(newUrl, parentPageTitle, win_opt);
  } else {
    NewWindow= window.open(newUrl,"Verigy Printer Friendly",win_opt);
		//NewWindow= window.open(newUrl,parentPageTitle,win_opt);
  }
  NewWindow.creator= self;
}

