function openReminder() {
                         var windowName = 'reminder';
                         window.open("emailreminderpop.shtml", windowName, "height=310, width=440, status=no, resizable=no");
                                                                }


function openLogin() {
			window.open("loginpop.shtml", null, "height=240, width=410, status=no, resizable=yes, scrollbars=yes");
						}

function openHelp(url_add)
   {
   window.open(url_add,'Basket_Help','width=550,height=500,menubar=no,status=no,location=no,toolbar=no,scrollbars=yes');
   }

function openListing() {
var windowName = 'listing';
window.open("listingpop.shtml", windowName, "height=600 width=500 status=no resizable=yes scrollbars=yes");
}


var newwindow = ''
function openPic(url) {
if (newwindow.location && !newwindow.closed) {
    newwindow.location.href = url;
    newwindow.focus(); }
else {
    newwindow=window.open(url,'htmlname','width=450,height=400,resizable=1');}
}

function tidy() {
if (newwindow.location && !newwindow.closed) {
   newwindow.close(); }
}

