if(document.all){
var pic=new Image();pic.src="../images/flower.gif" 									/// Картинка
function iniD(){
	dv=document.createElement("DIV")
	dv.style.position="absolute"
	dv.style.left=document.body.clientWidth/2+269								///По горизонтали
	dv.style.top=80															///По вертикали
	dv.id="DV"
	var img=document.createElement("IMG");img.src=pic.src
	dv.appendChild(img)
	dv=document.body.appendChild(dv)
}
function resD(){document.all.DV.style.left=document.body.clientWidth/2+269}		///По горизонтали
b_resD=(onresize)?onresize:0;onresize=function(){if(b_resD)b_resD();resD()}
b_iniD=(onload)?onload:0;onload=function(){if(b_iniD)b_iniD();iniD()}
}
