function getWidget(params){
	var frameURL = params["websiteUrl"] + "/ypn/businesspartneradunit?";

	if (params["adType"] != undefined)
		frameURL = frameURL + "&ad=" + params["adType"];

	if (params["zipcode"] != undefined)
		frameURL = frameURL + "&zip=" + params["zipcode"];

	if (params["location"] != undefined)
		frameURL = frameURL + "&loc=" + params["location"];

	if (params["query"] != undefined)
		frameURL = frameURL + "&q=" + params["query"];

	ifrm = document.createElement("iframe");
	ifrm.setAttribute("src", frameURL);
	ifrm.setAttribute("frameBorder", "0");
	ifrm.setAttribute("scrolling", "no");
	ifrm.style.width = 300+"px";
 	ifrm.style.height = 250+"px";

 	var div = document.getElementById(params["divId"]);
 	div.appendChild(ifrm);
}