var _popupwin_;
var _height_;
var _width_;
var _param_;
var _title_;
var _preview_;
var _delay_;
var _flyin_=0;
var m1029={
wakeuptimer:0,
initDelay:4000,
showonce:0,
displaypopup:0,
tempX:0,
tempY:0,
dispCount:0,
IE:document.all?true:false,
logo:'',
init:function() {
if (typeof _delay_ != 'undefined') m1029.initDelay = _delay_ * 1000;
if (typeof _param_ == 'undefined') _param_ = '';
if (!m1029.IE) document.captureEvents(Event.MOUSEMOVE)
document.onmousemove = m1029.getMouseXY;
setTimeout('m1029.wakeuppopup()', m1029.initDelay);
},
wakeuppopup:function() {
  m1029.displaypopup = 1;
},
getMouseXY:function(e) {
	//document.Show.Target.value = e.originalTarget.toString();
	try {
		if (e.originalTarget.toString() == "[object HTMLOptionElement]") return;
	}
	catch (ex) {}
	if (_preview_ == 1) return;
	if (m1029.showonce == 1 && m1029.dispCount > 0) return;
	if (m1029.displaypopup == 0) return;
	if (m1029.IE) {
		m1029.tempX = event.clientX;
		m1029.tempY = event.clientY;
	}
	else {
		m1029.tempX = e.pageX - document.body.scrolLLeft;
		m1029.tempY = e.pageY - document.body.scrollTop;
	}
	if (m1029.tempX < 0) m1029.tempX = 0;
	if (m1029.tempY < 0) m1029.tempY = 0; 
	if (m1029.tempY > 0 && m1029.tempY < 20) {
		if (m1029.displaypopup == 1) {
			m1029.dispCount++;
			m1029.displaypopup = 0;
			$("a#triggerlcw").trigger("click");
		} 
	}
},
create:function() {}};m1029.showonce=0;m1029.wakeuptimer=0;m1029.init();m1029.create();