var oPopup = window.createPopup();
var popTop = 1;
var ggtop = false;
var extendshow = false;

function popmsg(img,msgstr){
	var winstr="<table background=\""+img+"\" style=\"border: 1 solid  #000000\" width=\"302\" height=\"173\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" oncontextmenu=\"window.event.returnValue=false\" onselectstart=\"event.returnValue=false\" ondragstart=\"window.event.returnValue=false\">";
	winstr+="<tr><td height=\"25\" align=\"right\"><table width=1% height=100%><tr>";
	winstr+="<td style='CURSOR: hand; HEIGHT:21px;WIDTH: 21px;' onmouseover=\"if(parent.ggtop==false){this.style.border='1px outset'; this.style.HEIGHT='21px';this.style.WIDTH='21px';}\" onclick=\"if(parent.ggtop==false){this.style.border='1px inset';parent.ggtop=true;}else{this.style.border='1px outset';parent.ggtop=false;} this.style.HEIGHT='21px';this.style.WIDTH='21px';\" onmouseout=\"if(parent.ggtop==false){this.style.border=''; this.style.HEIGHT='21px';this.style.WIDTH='21px';}\">";
	winstr+="<img border=\"0\" src=\"images/pin.gif\" >";
	winstr+="</td><td  onmouseover=\"this.style.border='1px outset';this.style.HEIGHT='21px';this.style.WIDTH='21px';\" onclick=\"this.style.border='1px inset';this.style.HEIGHT='21px';this.style.WIDTH='21px';parent.ggtop=false;parent.extendshow=false;parent.popshow();\" onmouseout=\"this.style.border=''; this.style.HEIGHT='21px';this.style.WIDTH='21px';\">";
	winstr+="<img border=\"0\" src=\"images/close.gif\" ></td></tr></table></td></tr>";
	winstr+="<tr><td height=\"148\" align=\"center\"><table width=\"90%\" height=\"110\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">";
	winstr+="<tr><td valign=\"top\" style='line-height: 165%; font-COLOR: #A8A899; CURSOR: default; FONT-SIZE: 12px'>"+msgstr+"</td></tr></table></td></tr></table>";
	oPopup.document.body.innerHTML = winstr;
	popshow();
}

function popshow(){
	extendshow = false;
	if(popTop > 346){
		clearTimeout(mytime);
		oPopup.hide();
		return;
	}else if(popTop > 173){
		oPopup.show(screen.width-303,screen.height-173+popTop,302,346-popTop);

	}else if(popTop == 173){
		oPopup.show(screen.width-303,screen.height-173,302,173);
		clearTimeout(mytime);
		popTop+=1;
		extendshow = true;
		popextendshow();
		var mytime=setTimeout("popshow();",10000);
		return;
	}else if(popTop < 173){
		oPopup.show(screen.width-303,screen.height-popTop,302,popTop);
	}
	popTop+=2;
	if(ggtop) popTop-=2;
	var mytime=setTimeout("popshow();",1);
}

function popextendshow(){
	if(extendshow) {
		oPopup.show(screen.width-303,screen.height-173,302,173);
		setTimeout("popextendshow()",100);
	}
}

