function image_create(strSRC,strALT,strWIDTH,strHEIGHT,strCLASS,strID)
{
	var node;
	node=document.createElement("img");
	node.setAttribute("src",strSRC);
	node.setAttribute("alt",strALT);
	node.className=strCLASS
	if(strID.length>0)
		node.id=strID;
	
	if(strWIDTH.length>0)
		node.setAttribute("width",strWIDTH);
	if(strHEIGHT.length>0)
		node.setAttribute("height",strHEIGHT);
	
	return node;
}

