// $Id: distributors.js,v 1.2 2008-11-23 03:15:41 peter Exp $ function openNewWindow(URLtoOpen, windowName, windowFeatures) { var newWindow=window.open(URLtoOpen, windowName, windowFeatures); return newWindow; } function openClientWindow(URLtoOpen) { return openNewWindow(URLtoOpen, "clientWebsite", "status=yes,toolbar=yes,resizable=yes,scrollbars=yes,bookmarks=yes"); } function openNewWindow2008(URLtoOpen, width, height) { return openNewWindow(URLtoOpen, "dist", "status=no,toolbar=yes,resizable=yes,scrollbars=yes,bookmarks=yes"+",width="+width+",height="+height); }