× Bidding has ended on this item.
"); if (!$(this).is(":visible")) { $(this).fadeTo(1000, 1, function () { $(this).slideDown(500); }); } }); } if (data.Accepted) { //prepare success system message systemMessage = "
×" + contextMessageDictionary["ActionSuccess"] + "
"; if (!$(".awe-rt-ListingActionMessage").is(":visible") || $(".awe-rt-ListingActionMessage").html() == "") { $(".awe-rt-ListingActionMessage").hide(); $(".awe-rt-ListingActionMessage").html(systemMessage); $(".awe-rt-ListingActionMessage").slideDown(); } else { $(".awe-rt-ListingActionMessage").fadeOut(200, function () { $(this).html(systemMessage); $(this).fadeIn(200); }); } //render checkout button if a lineitem was returned //EXCEPT: when Auto Generate Invoices is enabled, do not render checkout buttons for lots until the entire event has ended if (!autoGenerateInvoices && ownerAllowsInstantCheckout && data.LineItemID) { var checkoutUrl = 'https://www.johnpyeauctions.co.uk/Account/Checkout?lineitemid=' + data.LineItemID; checkoutUrl += '&returnUrl=%2fEvent%2fLotDetails%2f83285346%2fQTY-OF-ASSORTED-ITEMS-TO-INCLUDE-MJJESPORTS-100MM-PVC-OFFSET-MISALIGNED-TOILET-WASTE-PAN-CONNECTOR-BOWL-SMOOTH-SOIL-PIPE-LOCATION-R-RACK'; if (autoCheckoutForBuyNow) { window.location = checkoutUrl; } var checkoutHtml = '
' + '' + '' + '' + '' + '' + '' + 'Checkout' + '' + '' + '
'; if ($(".detail__context-menu").find(".btn__detail__checkout").length == 0) { $(".detail__context-menu").prepend(checkoutHtml).show(); } else { jslog("skipped rendering checkout button because one already exists."); } } if (data.LineItemID && !highlightCheckoutButtonForBuyNow) { //render contact seller button if one does not already exist if (false && $("a.btn__detail__contactuser").length == 0) { var contactSellerUrl = '/Account/SendListingMessage?receiver=JohnPye&template=ask_listing_question&listingID=83285347&returnUrl=%2FEvent%2FLotDetails%2F83285346%2FQTY-OF-ASSORTED-ITEMS-TO-INCLUDE-MJJESPORTS-100MM-PVC-OFFSET-MISALIGNED-TOILET-WASTE-PAN-CONNECTOR-BOWL-SMOOTH-SOIL-PIPE-LOCATION-R-RACK'; var contactSellerHtml = '
' + '' + '' + '' + '' + '' + '' + 'Contact Seller' + '' + '' + '
'; $(".detail__context-menu").append(contactSellerHtml).show(); jslog("contact button rendered for line item #" + data.LineItemID); } //render feedback button if (false) { var feedbackUrl = '/Account/SubmitFeedback?LineItemID=REPLACELINEITEMID&ListingID=83285347&Receiver=JohnPye' .replace("REPLACELINEITEMID", data.LineItemID); var feedbackHtml = '
' + '' + '' + '' + '' + '' + '' + 'Feedback' + '' + '' + '
'; $(".detail__context-menu").append(feedbackHtml).show(); jslog("feedback button rendered for line item #" + data.LineItemID); } } } else { //ReasonString is populated, prepare a Negative System message if (contextMessageDictionary[data.ReasonString]) { systemMessage = "
×" + contextMessageDictionary[data.ReasonString] + "
"; } else { systemMessage = "
×" + data.ReasonString + "
"; } if (!$(".awe-rt-ListingActionMessage").is(":visible") || $(".awe-rt-ListingActionMessage").html() == "") { $(".awe-rt-ListingActionMessage").hide(); $(".awe-rt-ListingActionMessage").html(systemMessage); $(".awe-rt-ListingActionMessage").slideDown(); } else { $(".awe-rt-ListingActionMessage").fadeOut(200, function () { $(this).html(systemMessage); $(this).fadeIn(200); }); } } } else { //Context is null, but ReasonString is populated, prepare a Negative System message if (contextMessageDictionary[data.ReasonString]) { systemMessage = "
×" + contextMessageDictionary[data.ReasonString] + "
"; } else { systemMessage = "
×" + data.ReasonString + "
"; } if (!$(".awe-rt-ListingActionMessage").is(":visible") || $(".awe-rt-ListingActionMessage").html() == "") { $(".awe-rt-ListingActionMessage").hide(); $(".awe-rt-ListingActionMessage").html(systemMessage); $(".awe-rt-ListingActionMessage").slideDown(); } else { $(".awe-rt-ListingActionMessage").fadeOut(200, function () { $(this).html(systemMessage); $(this).fadeIn(200); }); } } } }); // render a checkout button if: // // - the lot ends successfully, and // - the winner is viewing, but only if // - auto gen invoices is disabled // // mainly to prevent one invoice per LOT per buyer, rather than the generally preferred one invoice per EVENT per buyer $(document).on("SignalR_UpdateListingStatus", function (event, data) { if ($.inArray(data.ListingID, interestingListings) < 0) return; if (autoGenerateInvoices || ownerAllowsInstantCheckout) { if (data.Status == "Successful" && data.LineItemID && data.LineItemPayerUN == "") { //when Auto Generate Invoices is enabled, do not render checkout buttons for lots until the entire event has ended if (!autoGenerateInvoices) { var checkoutUrl = 'https://www.johnpyeauctions.co.uk/Account/Checkout?lineitemid=' + data.LineItemID; checkoutUrl += '&returnUrl=%2fEvent%2fLotDetails%2f83285346%2fQTY-OF-ASSORTED-ITEMS-TO-INCLUDE-MJJESPORTS-100MM-PVC-OFFSET-MISALIGNED-TOILET-WASTE-PAN-CONNECTOR-BOWL-SMOOTH-SOIL-PIPE-LOCATION-R-RACK'; var checkoutHtml = '
' + '' + '' + '' + '' + '' + '' + 'Checkout' + '' + '' + '
'; if ($(".detail__context-menu").find(".btn__detail__checkout").length == 0) { $(".detail__context-menu").prepend(checkoutHtml).show(); } else { jslog("skipped rendering checkout button because one already exists."); } } //render contact seller button if one does not already exist if (false && $("a.btn__detail__contactuser").length == 0) { //"/Account/SendListingMessage?receiver=tester1&template=ask_listing_question&listingID=166614&returnUrl=%2FListing%2FDetails%2F166614%2Ftest-item-J" var contactSellerUrl = '/Account/SendListingMessage?receiver=JohnPye&template=ask_listing_question&listingID=83285347&returnUrl=%2FEvent%2FLotDetails%2F83285346%2FQTY-OF-ASSORTED-ITEMS-TO-INCLUDE-MJJESPORTS-100MM-PVC-OFFSET-MISALIGNED-TOILET-WASTE-PAN-CONNECTOR-BOWL-SMOOTH-SOIL-PIPE-LOCATION-R-RACK'; var contactSellerHtml = '
' + '' + '' + '' + '' + '' + '' + 'Contact Seller' + '' + '' + '
'; $(".detail__context-menu").append(contactSellerHtml).show(); jslog("contact button rendered for line item #" + data.LineItemID); } //render feedback button if (false) { var feedbackUrl = '/Account/SubmitFeedback?LineItemID=REPLACELINEITEMID&ListingID=83285347&Receiver=JohnPye' .replace("REPLACELINEITEMID", data.LineItemID); var feedbackHtml = '
' + '' + '' + '' + '' + '' + '' + 'Feedback' + '' + '' + '
'; $(".detail__context-menu").append(feedbackHtml).show(); jslog("feedback button rendered for line item #" + data.LineItemID); } } } }); $(".GoToPrevLot").on("click", function () { var thisLotOrder = 457; var lastLotOrder = 999; if (thisLotOrder > 0) { $(".GoToPrevLot").prop("disabled", true); $.post("/RealTime/GetLotIdByLotOrder", { eventId: 81777912, lotOrder: (thisLotOrder - 1) }) .done(function (data) { if (data.LotId) { window.location.href = "/Event/LotDetails" + "/" + data.LotId; } }); } }); $(".GoToNextLot").on("click", function () { var thisLotOrder = 457; var lastLotOrder = 999; if (thisLotOrder < lastLotOrder) { $(".GoToNextLot").prop("disabled", true); $.post("/RealTime/GetLotIdByLotOrder", { eventId: 81777912, lotOrder: (thisLotOrder + 1) }) .done(function (data) { console.log("next lot result: ", data); if (data.LotId) { window.location.href = "/Event/LotDetails" + "/" + data.LotId; } }); } }); $(document).on("SignalR_UpdateInvoiceStatus", function (event, data) { if ($.inArray(data.ListingID, interestingListings) < 0) return; jslog("SignalR_UpdateInvoiceStatus (listing, invoice, status, payer): " + data.ListingID + ", " + data.InvoiceID + ", " + data.InvoiceStatus + ", " + data.InvoicePayerUN); //show "View Invoice" or "Checkout" button if applicable if (data.InvoicePayerUN == aweUserName) { //get result of /RealTime/IsInvoicePayable?invoiceId=nnnnnn var promise = Proxy.invokeAsync("IsInvoicePayable", { invoiceId: data.InvoiceID }, function(result) { var checkoutUrl = 'https://www.johnpyeauctions.co.uk/Account/Invoice/' + data.InvoiceID; checkoutUrl += '?returnUrl=%2fEvent%2fLotDetails%2f83285346%2fQTY-OF-ASSORTED-ITEMS-TO-INCLUDE-MJJESPORTS-100MM-PVC-OFFSET-MISALIGNED-TOILET-WASTE-PAN-CONNECTOR-BOWL-SMOOTH-SOIL-PIPE-LOCATION-R-RACK'; if (result.isPayable) { //invoice is payable if (autoCheckoutForBuyNow) { window.location = checkoutUrl; } if ($("a.btn__detail__checkout").length == 0) { //render checkout button if one does not already exist var checkoutHtml = '
' + '' + '' + '' + '' + '' + '' + 'Checkout' + '' + '' + '
'; $(".detail__context-menu").prepend(checkoutHtml).show(); jslog("checkout button rendered for invoice #" + data.InvoiceID); } } else { //the invoice is not payable, so instead of 'checkout' button, render 'view invoice' button if one does not already exist if ($("a.btn__detail__invoices").length == 0) { var viewInvoiceHtml = '
' + '' + '' + '' + '' + '' + '' + 'View Invoice' + '' + '' + '
'; $(".detail__context-menu").append(viewInvoiceHtml).show(); jslog("view invoice button rendered for invoice #" + data.InvoiceID); } } //only render the contact and/or feedback buttons if either // a) the web.config setting HighlightCheckoutButtonForBuyNow is set to False, or // b) the invoice is not payable if (!highlightCheckoutButtonForBuyNow || !result.isPayable) { //render contact seller button if one does not already exist if (false && $("a.btn__detail__contactuser").length == 0) { var contactSellerUrl = '/Account/SendListingMessage?receiver=JohnPye&template=ask_listing_question&listingID=83285347&returnUrl=%2FEvent%2FLotDetails%2F83285346%2FQTY-OF-ASSORTED-ITEMS-TO-INCLUDE-MJJESPORTS-100MM-PVC-OFFSET-MISALIGNED-TOILET-WASTE-PAN-CONNECTOR-BOWL-SMOOTH-SOIL-PIPE-LOCATION-R-RACK'; var contactSellerHtml = '
' + '' + '' + '' + '' + '' + '' + 'Contact Seller' + '' + '' + '
'; $(".detail__context-menu").append(contactSellerHtml).show(); jslog("contact button rendered for invoice #" + data.InvoiceID); } //render feedback button if (false) { var feedbackUrl = '/Account/SubmitFeedback?LineItemID=REPLACELINEITEMID&ListingID=83285347&Receiver=JohnPye' .replace("REPLACELINEITEMID", data.LineItemID); var feedbackHtml = '
' + '' + '' + '' + '' + '' + '' + 'Feedback' + '' + '' + '
'; $(".detail__context-menu").append(feedbackHtml).show(); jslog("feedback button rendered for invoice #" + data.InvoiceID); } } }, function(error) { jslog("Error retrieving invoice status (1): " + error); } ); promise.fail(function (jqXHR, textStatus) { jslog("Error retrieving invoice status (2): " + textStatus); }); } }); });
Back To Catalog
Saleroom Location
E_1100_SR33_DPD (PARCEL DELIVERY ONLY)
John Pye Auctions,Bridgeness Rd Carriden Bo’ness West Lothian EH51 9SF Nr Edin
PAYMENT DEADLINE - THURSDAY 11TH MAY2023 - 4PM
25% Buyers Premium + 20% VAT
This Auction Uses Online Bidding.
- Current Price £4.00 ( )
-
Your Maximum Bid Is £0.00
- 1 Bid(s) View Bid History
Edinburgh SR33 - Delivery Only - QTY OF ASSORTED ITEMS TO INCLUDE MJJESPORTS 100MM PVC OFFSET MISALIGNED TOILET WASTE PAN CONNECTOR BOWL SMOOTH SOIL PIPE:: LOCATION - R RACK 
Parcel Delivery (DPD) | £10.00 (£1.00 as additional item) |
Shipping Info
E_1100_SR33_DPD (PARCEL DELIVERY ONLY)
John Pye Auctions,Bridgeness Rd Carriden Bo’ness West Lothian EH51 9SF Nr Edin
PAYMENT DEADLINE - THURSDAY 11TH MAY2023 - 4PM
Description
QTY OF ASSORTED ITEMS TO INCLUDE MJJESPORTS 100MM PVC OFFSET MISALIGNED TOILET WASTE PAN CONNECTOR BOWL SMOOTH SOIL PIPE:: LOCATION - R RACK
John Pye Auctions will bid incrementally for you up to your maximum bid. Your maximum bid is kept a secret from other users.
Your bid is a contract between you and the listing creator. If you have the highest bid you will enter into a legally binding purchase contract.
FAQs
How do you use an offset pan connector? ›
Offset pan connectors are used when the horizontal outlet of the pan is slightly off centre to the corresponding soil pipe connection. All of the fins on the outlet of the pan connector should be pushed securely into the soil pipe to make the connection.
What size toilet pan connector do I need? ›20mm Offset Toilet Pan Connector
Socket end goes over spigot outlet on toilet pan, other end goes into standard 110mm (4 inch) soil pipe.
First, measure your toilet's new flange and cut your pipe accordingly so that it'll fit in nicely. Then add a slip coupling to your soil pipe at the end where the main stack is. Next, connect the flange on the opposite end using a push-fit connection.
What is offset pipe fitting? ›When the joints in a pipe aren't properly aligned and the ends of two pipe segments, called joints, are offset from each other so much that the pipe leaks at that junction, they're called offset joints. Offset joints can result in decreased pressure in the pipes because of friction losses.
Are all toilet pans the same height? ›Toilet Pan Height
The average height from floor to the top of the cistern is approximately 30 inches. The right height is based on your bathroom needs. For example, if you are choosing a toilet for a family bathroom, you may want to choose a toilet pan smaller in height that is easier for younger children to use.
Typically they are 3/8” in diameter, but toilet supply line size can vary in length, usually anywhere from 9” to 20”. Measure for accuracy to ensure you are buying a part that will match your installation.
Does pan connector go straight into soil pipe? ›A straight pan connector is a commonly used plumbing part that is used to connect the pan of a toilet to the soil pipe to safely carry waste into the sewage system.
How far should soil pipe be from wall for toilet? ›Generally, this distance tends to be around 300mm in a cavity wall, so take this measurement and add an extra 300mm onto this figure – this will allow the WC waste connector to be fitted.
Can you plumb sink waste into toilet waste? ›Can toilet and sink waste join together? Technically, yes. In a combined soil and waste system, the waste from your toilets and sinks will join together when they run into the soil stack.
What height toilet is best for seniors? ›The best toilet height for seniors is typically around 17 to 19 inches from the floor to the top of the seat. These are considered a comfortable height for most adults, as it allows them to sit down and stand up easily without straining their legs or back.
How often should a toilet be replaced? ›
Most plumbers agree that an average toilet can last around 50 years. However, this is only when the toilet is well maintained and gently used. If it was improperly installed or frequently misused, it may not last as long.
Can a toilet supply line be too long? ›The hot water may be delayed for one or two seconds, but the water pressure will be unaffected. The only downside to a longer-than-necessary flex line is that the line will bunch up beneath the sink, taking up some valuable room. The only real requirement for the length of the flex line is that it cannot be too small.
What size pipe is best for toilet? ›A three-inch pipe is what's used in homes to pipe toilets. The four-inch pipe is used as the building drain under floors or in crawlspaces to transport all the wastewater from a home out to the septic tank or sewer. The four-inch pipe may also be used in a home if it's capturing two or more bathrooms.
What size pipe are used for most toilet drains? ›A lavatory requires a 1 ¼ minimum drain and vent pipe size. The minimum slope required for drainage piping less than 4 in pipe size is ¼ per foot slope. Section 701 . 1 of the plumbing code lists all of the approved drainage piping materials.
Can you over tighten a toilet to the floor? ›Be careful to not over-tighten the bolts as this can crack or damage the porcelain and possibly require complete replacement. If the toilet is still loose after tightening the bolts, installing shims between the flange and the floor may be necessary.
How much does it cost to tighten a toilet supply line? ›One of the biggest problems when swapping out water supply lines is knowing how tight the connections should be. Obviously this is important to prevent water leaks. Most directions say to hand tighten then use a wrench for the last 1/4 to 1/2 turn.
Can over tightening cause leaks? ›If a valve is over-tightened, it deforms the tubing and the connection, as mentioned earlier. These deformities create cracks and gaps where the fluid can begin leaking out.
Is it necessary for offset pan connectors to have WaterMark? ›Offset pan connectors require certification to WaterMark Level 2.
What is pan offset? ›The PAN Offset value equals the sum of the numbers set to ON. For example, if the DIP switches labeled1, 4, and 8 are set to ON, the PAN Offset value is 13 (1 + 4 + 8 = 13).
Can a drain pipe go straight into the ground? ›And, no, a downspout should not allow water to pour straight into the ground at the base of a wall. The role of the downspout is to channel water either into a public drainage system or, at least, away from the immediate environs of your property.
Can you put a waste pipe into a soil pipe? ›
There are a number of different ways of connecting a waste pipe into a soil pipe, all of which use connectors known as boss fittings. A boss fitting uses an adaptor (32mm, 40mm or 50mm depending upon the waste pipe size) to connect into the side of the soil pipe.
Do soil pipes need to be boxed in? ›You are supposed to insulate the soil pipe to stop heating the noise of sewage moving down the pipe. It also hides an ugly pipe and contains any potential leaks, rather than it coming into the kitchen.
What is pan collar for toilet bowl? ›The pan collar is a connection pipe to join the sewage hole to the wc outlet. The pan collar size of 1 inch can be use to offset the 6 inch s trap from the wc during installation.
What are the requirements of using watermarked products in a plumbing system? ›- be tested by an accredited testing laboratory.
- comply with an applicable specification.
- be manufactured in accordance with an approved quality management system.
- clearly state its intended scope of use.
Watermarks can provide clarity when assets are meant to be viewed, but not shared. Asset Protection - Watermarks are used to protect images and visual files from being stolen and used or altered without the owner's permission.
What is a pan setting? ›Panning audio lets you distribute sound across the stereo or surround spectrum to create balance or a special effect. For example, you can place more sound in the right channel of a stereo clip or less sound in the center channel of a surround clip.
Should I pan overheads? ›With overheads, I personally prefer to pan them hard left and right (7:00 and 5:00) because it's the way I was taught and I do prefer it. For a less open stereo image, some people prefer to go less drastically left and right at about 8:00 and 4:00.
How do you read pan? ›PAN is a ten-digit unique alphanumeric number issued by the Income Tax Department. PAN is issued in the form of a laminated plastic card (commonly known as PAN card). Last character, i.e., the tenth character is an alphabetic check digit.
Should toilet flange be flush with floor? ›A best practice is to install the toilet flange on top of the finished floor. If you install the toilet flange flush with the finished floor, or even below the finished floor, leak paths will form, because the flange won't be at the correct height to accept the horn at the bottom of the toilet.
How do you measure toilet offset? ›Measure from the wall to the center of the toilet's base bolts. Doing so will provide you the toilet's rough-in distance. Avoid measuring from baseboards or other moldings. If your wall has a baseboard or other moldings, adjust your measuring tape so it starts from the bare wall just above the baseboard.
What goes between toilet and flange? ›
A wax ring, mounted on the closet flange, creates a watertight seal between the bottom of the toilet and the closet flange, preventing any leaks, odors or sewer gases from escaping the fixture. T bolts, or as Oatey calls them, "Johni-Bolts," are used to connect the toilet (via slots) to the toilet flange.