function openPicture(picture,height,width) {

	var load = window.open(picture,'','scrollbars=no,menubar=0,height=' + height + ',width=' + width + ',resizable=no,toolbar=0,location=0,status=0');
	
}



function confirmDeleteAuction()
{
var agree=confirm("Are you sure you wish to delete the auction?");
if (agree)
        return true ;
else
        return false ;
}

function confirmDeletePicture() {
var agree=confirm("Are you sure you wish to delete the picture?");
if (agree)
        return true ;
else
        return false ;
}



function confirmRemoveSubscriber() {
var agree=confirm("Are you sure you wish to delete the mailing list subscriber?");
if (agree)
        return true ;
else
        return false ;
}

function confirmActivation() {
var agree=confirm("Are you sure you wish to activate this auction?");
if (agree)
        return true ;
else
        return false ;
}

function confirmDeactivation() {
var agree=confirm("Are you sure you wish to deactivate this auction?");
if (agree)
        return true ;
else
        return false ;
}




