function ajaxFunction(){ var ajaxRequest; // The variable that makes Ajax possible! try{ // Opera 8.0+, Firefox, Safari ajaxRequest = new XMLHttpRequest(); } catch (e){ // Internet Explorer Browsers try{ ajaxRequest = new ActiveXObject("Msxml2.XMLHTTP"); } catch (e) { try{ ajaxRequest = new ActiveXObject("Microsoft.XMLHTTP"); } catch (e){ // Something went wrong alert("Your browser doesn't support the XmlHttpRequest object !"); return false; } } } return ajaxRequest; } function displayCart(){ var uid =''; uid = ''; var ajxRequest = ajaxFunction(); ajxRequest.open('GET','./ajax/axShowCart.php?userId='+uid,true); ajxRequest.onreadystatechange = function(){ if(ajxRequest.readyState == 4){ if(trim(ajxRequest.responseText)!="") document.getElementById("basketItems").innerHTML = trim(ajxRequest.responseText); }else{ document.getElementById("basketItems").innerHTML="Loading.."; } } ajxRequest.send(null); } function getCart(itemId){ var ajxRequest = ajaxFunction(); ajxRequest.open('GET','./ajax/axCart.php?itemId='+itemId,true); ajxRequest.onreadystatechange = function(){ if(ajxRequest.readyState == 4){ if(trim(ajxRequest.responseText)!="") document.getElementById("basketItems").innerHTML = trim(ajxRequest.responseText); }else{ document.getElementById("basketItems").innerHTML="Loading.."; } } ajxRequest.send(null); }
View Your Cart
Sign In
|
Join Free
Products
Selling leads
Buying leads
Advanced Search
Browse by Category
Agriculture
Apparel
Automobiles & Motorcycles
Business
Chemicals
Computer Hardware & Software
Construction & Real Estate
Consumer Electronics
Electrical Equipment & Supplies
Electronic
Energy
Environment
Fashion
Food & Drinks
Furniture
Gifts & Crafts
Hardware Supplies
Health & Medical
Home & Garden Products
Home Appliances
Industrial Equipment
Jewelry
More >>
function submitCategory(cat) { var frm = document.frmCategory; frm.clsaxProducts_categoryId.value = trim(cat); frm.clsaxProducts_menuFlag.value = 1; frm.action = "axListNewProducts.php"; frm.submit(); return true; }
How to Buy?
Just follow the links on the page and register. Its that easy. Any problems please contact us.
Home
|
Products
|
Post Ads
|
Privacy Policy
|
Terms & Conditions
|
About Us
|
Contact Us
Copyright 2010 © Orbitsell All Rights Reserved
function bodyLoad(){ displayCart(); init(); } window.onload = bodyLoad;