
var Obj='';
document.onmouseup=MUp;
document.onmousemove=MMove;

function MDown(Object){
Obj=Object.id;
document.all(Obj).setCapture();
pX=event.x-document.all(Obj).style.pixelLeft;
pY=event.y-document.all(Obj).style.pixelTop;
}

function MMove(){
if(Obj!=''){
	document.all(Obj).style.left=event.x-pX;
	document.all(Obj).style.top=event.y-pY;
	}
}

function MUp(){
if(Obj!=''){
	document.all(Obj).releaseCapture();
	Obj='';
	}
}

//////////////////////////////////////////////////////////////////////
//
// Move Div End...
//
//////////////////////////////////////////////////////////////////////

function ReSelectAreaList(strs)
{
	window.open("../plane/plane_city.html","SelectLoadIframe");
}

document.write('<style>\n' + 
		'.SelectAreaStyle {width:450px;height:350px;border:1px solid;border-left-color:#dddddd;border-top-color:#dddddd;border-right-color:#333333;border-bottom-color:#333333;background:#eeeeee;}\n</style>\n' + 
		'<div id="SearchWST" style="position:absolute;display:none;width:450px;height:300px;cursor:move;"><table class="SelectAreaStyle"><tr><td id="iframesrc"></td></tr></table></div>\n');

function HiddenSelectAreaStyle()
{
	hideDestinationSelect();
}


