//use this file for js 

//generic pop up
function launchUpload(loc,w,h){
	var id = Math.round(Math.random()*1000);
	var numW = Number(w);
	var numH = Number(h);
	window.open(loc, id,"width="+numW+", height="+numH+", left=100, top=100, scrollbars=yes, toolbar=no, location=no, status=no, menubar=no, resizable=yes");
}

function DoCommand(pid){
IURCommand(
/* target_url          */  	 "http://registration.disney.co.uk",  
/* task               */      "login",
/* promotion_id    		*/	 pid,
/* bu                   */   "", 
/* next_url        */       	 "none", 
/* country           */     	 "",  
/* member_name			*/	 "",  
/* password          	*/	 ""
);
}


