var newWin;

function openpopupImgFullSize(popurl, width, height) {
   if (null != newWin  && !newWin.closed)  closeNewWindow();

   var props = 'width=' +width +',height=' +height +',scrollbars=yes,resizable=yes,top=30,status=no,menubar=no,directories=no,location=no,toolbar=yes';
   newWin=window.open(popurl,'',props);
   newWin.focus();
}

function openpopupDealerList(popurl, width, height) {
   if (null != newWin  && !newWin.closed)  closeNewWindow();

   var props = 'width=' +width +',height=' +height +',scrollbars=yes,resizable=yes,top=30,status=no,menubar=no,directories=no,location=no,toolbar=no';
   newWin=window.open(popurl,'',props);
   newWin.focus();
}

function openNewWindow(page) {
    if (null != newWin && !newWin.closed) closeNewWindow();
    newWin=window.open(page,'','width=700,height=700,scrollbars=yes,resizable=yes,screenX=0,screenY=0,top=0,left=0,status=yes,menubar=yes,directories=yes,location=yes,toolbar=yes');
    newWin.focus();
}