// pulldown box
// copyright Moonbug Studio
// hap@moonbugstudio.com

// popup quote box
function show()
{
	clearTimeout(document.closey);

	m = document.getElementById('pulldown_hide').style;	
	n = document.getElementById('pulldown_show').style;	

	m.display = "none";
	n.display = "block";
}

// close popup
function hide()
{
	document.closey = setTimeout("hide2();", 500);  // give it a frame, FF needs it the first time to get mouse positions
}

function hide2()
{
    m = document.getElementById('pulldown_hide').style;	
	n = document.getElementById('pulldown_show').style;	

	n.display = "none";
	m.display = "block";
}

function popBlog(URL)
{
	window.open(URL,"","width=700,height=120,left=10,top=10,status=0,scrollbars=1,resizable=1,menubar=0,location=0,toolbar=0")
}