function draw(){

//set up our query string
src = path + "/images/AdHandler.php?dir=" + dir + "&";

//do we want to fade?
if (fade == "yes"){
	src += "fade=yes&";
	//How fast do we want to fade?
	src += "speed=" + speed + "&";
	//Do we want a delay?
	src += "delay=" + delay + "&";
}
else
	src += "fade=no&";

//build our iframe based on what we told it we wanted
var output = "<iframe src='" + src + "' " + "scrolling='no' " + "width='" + width + 
			 "' " + "height='" + height + "' " + "frameborder='0' marginwidth='0'>" + 
			 "marginheight='0' vspace='0' hspace='0' allowtransparency='true'" +
			 "[Content for browsers that don't support iframes goes here]\n</iframe>";
			 
//print it out
document.write(output);

}