function popup(url,nomsg,w,h)
{
	if(!h) h=570;
	if(!w) w=800;
	if(!nomsg) alert("A new window will now open.  Please disable any pop-up blockers.");
	window.open(url,"popup"+Math.floor(Math.random()*1000),"width=" + w + ",height=" + h + ",menubars=No,toolbar=No,location=No,scrollbars=yes,status=No,resizable=yes,fullscreen=No");
}

function click()
{
	if (event.button==2)
	{
		alert('Thank you for visiting Buildmy.biz!')
	} 
}

document.onmousedown=click
