if (parent.location != self.location) {
   parent.location = self.location.href
   }



function jumpto() {
var go_link=document.forms[0].elements[0].options[document.forms[0].elements[0].selectedIndex].value;
//alert(go_link);
	if (go_link != "none")  {
	
	document.location.href=go_link;
	} else if (go_link = "http://www.livejournal.com/users/nightsodark/")  {
window.open(go_link,"journal","height=400,width=600");
return false; 
	}
}

function jumptolink() {
var go_link=document.forms[0].elements[0].options[document.forms[0].elements[0].selectedIndex].value;
//alert(go_link);
	if (go_link == "http://www.livejournal.com/users/nightsodark/")  {
		window.open(go_link,"journal","height=400,width=600,status,resizable,scrollbars,location,toolbar,menubar");
		return false; 
	} else if (go_link != "none") {
		document.location.href=go_link;
		return false; 
	}
}

function rollover(img_name1, img_src1, img_name2, img_src2)
   {
   document[img_name1].src = img_src1;
   document[img_name2].src = img_src2;
   }






