﻿// JAVASCRIPT LIBRARY - COPYRIGHT 2008-2009 DIGITAL TRIP LTD - ALL RIGHTS RESERVED
// NO PORTION OF THIS LIBRARY MAY BE COPIED WITHOUT PRIOR WRITTEN CONSENT

// OPEN POPUP WINDOW
function openPopupWin(u,w,h,s,r){pW=window.open(u,'popupWin','width='+w+',height='+h+',left='+((screen.width-w)/2)+',top='+((screen.height-h)/2)+',status=yes,toolbar=no,menubar=no,scrollbars='+s+',resizable='+r);if(!pW.opener){pW.opener=self;}}
// EMAIL OBFUSCATOR
function sendMail(d,a,s){self.location.href='mai'+'lto:'+a+'@'+d+'?subject='+escape(s);}
// CLEARS CONTENTS OF A FIELD
function clearField(o,m,c){if(c==null){c='';}if(o.value==m){o.value=c;}}
// AFFILIATE URL MASKING
function clickAff(u){window.open(u,'_blank');return false;}
// GENERIC PRINT PAGE
function printPage(){window.print?window.print():alert('Your browser does not support this function.\nPlease use the browsers print button.');return false; }
// CROSS BROWSER FAVOURITES
function addToFavourites(){if(window.sidebar){window.sidebar.addPanel(document.title,document.location.href,'');}else if(window.external){window.external.AddFavorite(document.location.href,document.title);}else{alert('Your browser does not support this function.\nPlease use the browsers favourite button.');}return false;}
// SOCIAL BOOKMARKS
function socialBookmark(u){u=u.replace('TITLE',encodeURIComponent(document.title));u=u.replace('URL',encodeURIComponent(document.location.href));openPopupWin(u,740,620,'yes','yes');return false;}