//jQuery("head").append( jQuery("<link type='text/css' rel='stylesheet' href='wb_reconditionedtools.css' />"));

<!-- Change the above the location of your actual CSS-->
WinbuyerOCP = function(ocpUrl){
			jQuery("#WinbuyerOCP").remove(); 
            jQuery.getJSON(ocpUrl+'&callback=?',
            {},
            function(response, status) {
                jQuery("<div id='WinbuyerOCP'></div>").insertAfter(jQuery("#WinBuyer_Main")).hide();
				<!-- Change Winbuyer_Main above to the name of the div on your page (if other than WinbuyerMain)-->
				if(response.scripts != "")
				{
					var scriptsarr = response.scripts.split(',');
					for (x in scriptsarr)
					{
						try {
							eval(scriptsarr[x]); 
							}catch(err){}
					}
				}
                jQuery("#WinbuyerOCP").html(response.html).show();
            });
     
	 };
	 
