var blog = "http://outsidelasvegas.blogspot.com";

//links to specified parameter.  Uses second argument to determine pop-up status.
function linkMe(link, target)
{
	//target(0) keeps the link in the current window.  Targetx(x) pops it up.
	if(target == undefined)location.href = link;
	else window.open(link, "_blank");
}