function getAd(user, width, height, type, count) {
	var doc = "";
	if (type == 1)
	{
		doc += "<iframe name=\"webtools1\" id=\"webtools1\" src=\"http://widget.webtools.kr/view.php?user="+user+"&width="+width+"&height="+height+"&type="+type+"\" frameborder=\"0\" width=\""+width+"\" height=\"" + height + "\" border=0 frameborder=0 scrolling=no marginheight=0 marginwidth=0 allowtransparency=true></iframe>";
	}
	else if (type == 2)
	{
		doc += "<div style=\"border:0;position:absolute;top:0;left:0;\">";
		doc += "<iframe name=\"webtools2\" id=\"webtools2\" src=\"http://widget.webtools.kr/view.php?user="+user+"&type="+type+"\" frameborder=0 width=150 height=150 border=0 frameborder=0 scrolling=no marginheight=0 marginwidth=0 allowtransparency=true></iframe>";
		doc += "</div>";	
	}
	
	else if (type == 3)
	{
		doc += "<div style=\"border:0;position:absolute;top:0;right:0;\">";
		doc += "<iframe name=\"webtools3\" id=\"webtools3\" src=\"http://widget.webtools.kr/view.php?user="+user+"&type="+type+"\" frameborder=0 width=150 height=150 border=0 frameborder=0 scrolling=no marginheight=0 marginwidth=0 allowtransparency=true></iframe>";
		doc += "</div>";	
	} 
	
	else if (type == 4)
	{
		doc += "<iframe name=\"webtools4\" id=\"webtools4\" src=\"http://widget.webtools.kr/view.php?user="+user+"&width="+width+"&height="+height+"&type="+type+"\" frameborder=\"0\" width=\""+width+"\" height=\"" + height + "\" border=0 frameborder=0 scrolling=no marginheight=0 marginwidth=0 allowtransparency=true></iframe>";
	}

	document.write(doc);
}

var user = user;
var width = width;
var height = height;
var type = type;
var count = count;

getAd(user, width, height, type, count);

