var dragapproved=false
var z,x,y
function move(){
	if (event.button==1&&dragapproved){
	z.style.pixelLeft=temp1+event.clientX-x
	z.style.pixelTop=temp2+event.clientY-y
	return false
	}
}

function drags(){
		if (!document.all)
		return
		if (event.srcElement.className=='drag'){
		dragapproved=true
		z=event.srcElement
		temp1=z.style.pixelLeft
		temp2=z.style.pixelTop
		x=event.clientX
		y=event.clientY
		document.onmousemove=move
	}
}

document.onmousedown=drags
document.onmouseup=new Function('dragapproved=false')
<!-- END -->


// load ecard picture dynamically
function showEcardImage(){
	if (!document.images){
		return;
	}
	document.images.ecardpicture.src = document.ecardform.ecard_pict.options[document.ecardform.ecard_pict.selectedIndex].value;
}

function ecardImageBrowser(){
	if (!document.images){
		return;
	}
	document.images.ecardpicture.src = document.ecardImageBrowserForm.ecard_pict.options[document.ecardImageBrowserForm.ecard_pict.selectedIndex].value;
}