function sendalink(pagelink_pass) {
//referenced by all sheets referencing SBD website Master.dwt
//
x=450;
y=375;
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;
}
