
	var queryUrl = "http://name.knet.cn/mapserver.dll?userID=";
	 
	if(userid && userid !== null)
	{
		queryUrl = queryUrl + userid;
	}
	else
	{
		queryUrl = queryUrl + "0";
	}
			
	var height = "500";
	
	if(ownerheight && ownerheight !== null)
	{
		height = ownerheight;
	}
	
	var width = "620";
	
	if(ownerwidth && ownerwidth !== null)
	{
		width = ownerwidth;
	}
	
	var iframeSrc = "<iframe height=\"" + height + "\" width=\"" + width + "\" scrolling=\"no\" frameborder=\"0\" allowtransparency=\"true\" hspace=\"0\" vspace=\"0\" marginheight=\"0\" marginwidth=\"0\" src=\"" + queryUrl + "\"> </iframe>";
	
	document.write(iframeSrc);
	
