function sendalink(pagelink_pass) {
//referenced by all sheets referencing main.dwt
//
x=372;
y=430;
xpos =(screen.width-x)/2;
ypos =(screen.height-y)/2;
winLink = window.open('', 'winLink','status=no,toolbar=no,resizable=yes');//must allow resize to reposition and have tLink appear in netscape
winLink.resizeTo(x,y);
winLink.moveTo(xpos,ypos);
if (navigator.appName.indexOf("Netscape") > -1) winLink.setResizable(false);
winLink.location.href = 'sendalink.htm?' + pagelink_pass;
}

