var charge_menu_show=false;
document.write("<div id='chargeDiv' style='z-index:10000;position:absolute;width:110px;border:0px solid #0395E1;visibility:hidden;display:none'>"
+"<table width='252' border='0' cellspacing='0' cellpadding='0' bgcolor='#EAE8E6'>"
+"  <tr><td colspan='7' height='1'></td></tr>"
+"  <tr style='cursor:hand' height='20' align='center'><td width='1'></td><td width='80' height='0' bgcolor='#EAE8E6' class='fcsub' onmouseover=\"this.style.backgroundColor='#E3D3FE'\" onmouseout=\"this.style.backgroundColor='#EAE8E6'\">15,000~10,000</td><td width='3' bgcolor='#E3D3FE'></td><td width='80' height='0' bgcolor='#EAE8E6' class='fcsub' onmouseover=\"this.style.backgroundColor='#E3D3FE'\" onmouseout=\"this.style.backgroundColor='#EAE8E6'\">9,900~5,000</td><td width='3' bgcolor='#E3D3FE'></td><td width='80' height='0' bgcolor='#EAE8E6' class='fcsub' onmouseover=\"this.style.backgroundColor='#E3D3FE'\" onmouseout=\"this.style.backgroundColor='#EAE8E6'\">5,000šĖ¸¸</td><td width='1'></td></tr>"
+"  <tr><td colspan='7' height='1'></td></tr>"
+"</table></div>");
function charge_menu_onshow(URL)
{

			if (document.all["chargeDiv"]) {
				var tempmenuDiv;
				if (!document.all["chargeDiv"].length) tempmenuDiv=document.all["chargeDiv"];
				else tempmenuDiv=document.all["chargeDiv"][0];
			}
	
	var openertype = 1;

	if (!document.all["chargeDiv"]) return;
	var menuDiv;
	if (!document.all["chargeDiv"].length) menuDiv=document.all["chargeDiv"];
	else menuDiv=document.all["chargeDiv"][0];
	charge_menu_show=true;

	menuDiv.all(0).rows(1).cells(1).onclick=
	new Function("gopage('"+URL+"3');charge_menu_hide();");
	menuDiv.all(0).rows(1).cells(3).onclick=
	new Function("gopage('"+URL+"2');charge_menu_hide();");
	menuDiv.all(0).rows(1).cells(5).onclick=
	new Function("gopage('"+URL+"1');charge_menu_hide();");
		
	menuDiv.style.top=event.clientY+document.body.scrollTop-3+"px";
	menuDiv.style.left=event.clientX+document.body.scrollLeft+10;
	menuDiv.style.visibility="visible";
	menuDiv.style.display="";
	if ((parseInt(menuDiv.style.top) + menuDiv.offsetHeight) > (document.body.clientHeight+document.body.scrollTop))
		menuDiv.style.top=parseInt(menuDiv.style.top)-(menuDiv.offsetHeight-6);
	if ((parseInt(menuDiv.style.left) + menuDiv.offsetWidth) > (document.body.clientWidth+document.body.scrollLeft))
		menuDiv.style.left=parseInt(menuDiv.style.left)-(menuDiv.offsetWidth+20);
	menuDiv.onmouseout=new Function("charge_menu_show=false;");
	menuDiv.onmouseover=new Function("charge_menu_show=true;");
	document.onclick=charge_menu_hide_check;
	document.body.onresize=charge_menu_hide;
}
function charge_menu_hide()
{
	if (!document.all["chargeDiv"]) return;
	var menuDiv;
	if (!document.all["chargeDiv"].length) menuDiv=document.all["chargeDiv"];
	else menuDiv=document.all["chargeDiv"][0];
	menuDiv.style.visibility="hidden";
	menuDiv.style.display="none";
}
function charge_menu_hide_check()
{
	if (!charge_menu_show) charge_menu_hide();
}

function gopage(arg)
{
	location.href=arg;
}
