function btest() { bV = parseInt(navigator.appVersion); if (bV >= 4) print(); else alert("You must have a Version 4+ Browser to use this feature"); } function print() { scrolling = 'yes'; // Scrolling Yes/No/Auto resize = 'no'; // Scrolling Yes/No rndpname = (Math.floor(Math.random()*100)); //use in pagename if you want to open multiple popups pagename = rndpname; // popup name popht = 416; // popup height popwth = 655; // popup width //THATS ALL scrleft = (screen.width / 2) - (popwth /2); //centres horizontal scrtop = (screen.height / 2) - (popht /2); //centres vertical popit=window.open("about:blank",pagename,'top=' + scrtop + ',left=' + scrleft + ',height=' + popht + ',width=' + popwth + ',scrollbars=' + scrolling + ',resizable=' + resize + ',status=1,menubar=1'); popit.document.write(""); popit.document.write("Accommodation Centre Print Version
\"\"\"\"\"\"\"\"\"\"
Visit: www.teagardenshawksnest.com - here to Close

"); // popit.document.write("

CLICK HERE TO PRINT

"); popit.document.write(printme.innerHTML); popit.document.write("
"); popit.focus(); }