var domainroot="www.cartoondollemporium.com"
function Gsitesearch(curobj){curobj.q.value="site:"+domainroot+" "+curobj.qfront.value}

/*
Drag and Drop Script © Dynamic Drive (www.dynamicdrive.com)
For full source code, installation instructions, 100's more DHTML scripts, and Terms Of Use, visit dynamicdrive.com
*/

var isIE=document.all;
var dragapproved=false;
var tempX,tempY,x,y,z;
var i=10;

function drags(e){
z=isIE?event.srcElement:e.target;
if (z.className=="drag"){
i++;
tempX=parseInt(z.style.left);
tempY=parseInt(z.style.top);
if (isNaN(tempX)){tempX=0}
if (isNaN(tempY)){tempY=0}
x=isIE?event.clientX:e.clientX;
y=isIE?event.clientY:e.clientY;
dragapproved=true;
document.onmousemove=move;
}
}

function move(e){
if (!dragapproved) return;
z.style.left=isIE?tempX+event.clientX-x+"px":tempX+e.clientX-x+"px";
z.style.top=isIE?tempY+event.clientY-y+"px":tempY+e.clientY-y+"px";
z.style.zIndex=i;
return false;
}

document.onmousedown=drags;
document.onmouseup=Function("dragapproved=false");