/* Main Page Music Image Rollover */

function main_music(music_toggle){
	var musicDefault = "http://www.homestar14.com/images/cur_music_title.png"
	var musicActive = "http://www.homestar14.com/homestar14/itunes/homestarcom.png"

	if (music_toggle == "on"){
		document.getElementById("music_image").src = musicActive
	} else {
		document.getElementById("music_image").src = musicDefault
	}
}

/* Delete Post Popup function */

function blog_delete(BLOG_ID, BLOG_SUBJECT){
var delete_q=window.confirm("Are you sure you want to delete '" + blog_delete.arguments[1] + "'?")

if (delete_q)
	window.location="http://www.homestar14.com/admin/delete_post.php?id=" + blog_delete.arguments[0]

}

/* Javascript function to display/hide a hidden element */

function display_hidden(elementid){
	if (document.getElementById(elementid).style.visibility != "visible")
	{
		document.getElementById(elementid).style.visibility="visible"
	} else {
		document.getElementById(elementid).style.visibility="hidden"
	}
}


/* Javascript hack to make links opening in a new window validate as XHTML 1.0 Strict. */
function externalLinks() { if (!document.getElementsByTagName) return; var anchors = document.getElementsByTagName("a"); for (var i=0; i<anchors.length; i++) {  var anchor = anchors[i];  if (anchor.getAttribute("href") &&  anchor.getAttribute("rel") ==    "external")anchor.target = "_blank"; }}window.onload = externalLinks;