<!--
function launchRemote(target, width, height) {
  myRemote = launch(
	target, 
	"myRemote", 
	"height="+height+
	",width="+width+
	",channelmode=0,dependent=0,directories=0,fullscreen=0,location=0,menubar=0,resizable=0,scrollbars=1,status=0,toolbar=0", 
	"myWindow");
}

function launchRemoteScroll(target, width, height, scrollbars) {
  myRemote = launch(
	target, 
	"myRemote", 
	"height="+height+
	",width="+width+
	",channelmode=0,dependent=0,directories=0,fullscreen=0,location=0,menubar=0,resizable=0,scrollbars="+scrollbars+",status=0,toolbar=0", 
	"myWindow");
}

function launchRemoteFeatures(target, width, height, scrollbars, menubar, toolbar) {
  myRemote = launch(
	target, 
	"myRemote", 
	"height="+height+
	",width="+width+
	",channelmode=0,dependent=0,directories=0,fullscreen=0,location=0,menubar="+menubar+",resizable=0,scrollbars="+scrollbars+",status=0,toolbar="+toolbar, 
	"myWindow");
}


function launch(newURL, newName, newFeatures, orgName) {
  var remote = open(newURL, newName, newFeatures);
  if (remote.opener == null)
    remote.opener = window;
  remote.opener.name = orgName;
  return remote;
}

function doSendtoFriend(pagename) {

	launchRemote('/sendmail/?xsl_target=' + escape(window.location) + '&xsl_pagename=' + pagename, 320, 375)
	}


//-->
