  window.onload = function(){
		//alert("Loaded");
		var loc=window.location.href;
		if(loc.toUpperCase().indexOf("AFF=")!= -1){
			var affary = loc.split("=");
			makeFrame(affary[1]);
		}
 }
function makeFrame(AfltID) {
   ifrm = document.createElement("IFRAME");
   ifrm.id = "AFFILIATESALE";
   ifrm.setAttribute("src", "http://www.d4you.us/affiliates/aff_sess.php?afflt=" + AfltID); 
   ifrm.setAttribute("style","visibility:hidden;height:0px;width:0px");
   document.body.appendChild(ifrm);
} 

