function lostPassword() {
	window.open('lost_password.aspx', 'LostPassword', 'height=250,width=350,resizable=no,top=1,left=1,scrollbars=no,menubar=no');
}

function flashTour() {
	popupWin = window.open('tour.aspx','new_page1','width=640,height=410,scrollbars=no,top=20,left=20,alwaysraised=yes')
}
function doTerms() {
	window.open('terms.aspx');//, 'TermsWin', 'top=0,left=0,height=500,width=450');
}
function doPrivacy() {
	window.open('privacy.aspx');//, 'TermsWin', 'top=0,left=0,height=500,width=450');
}
function openScreenshotWin(vImage, vWidth, vHeight) {
    window.open(vImage,'screenshotWindow', 'width=' + vWidth + ',height=' + vHeight + ',toolbars=no');
}

function clickButton(e, buttonid){ 
     var bt = document.getElementById(buttonid); 
     if (typeof bt == 'object'){ 
//           if (navigator.appName.indexOf("Internet Explorer")>(-1)){ 
  //               if (event.keyCode == 13){ 
    //                   bt.click(); 
      //                 return false; 
        //         } 
          // } else { 
                 if (e.keyCode == 13){ 
                       bt.click(); 
                       return false; 
                 } 
  //         } 
     }
}

