function sendForm (formName) {
	document[formName].submit();
}


function confirmDelete (formName) {
	if (confirm ("Are you sure you want to delete this?")) {
 		document[formName].submit();
	}
}

function launchSongMP3 (f) {	// f = file
    window.open ("http://www.carbombcult.com/audio/mp3/" + f + ".mp3", "_self");
}

function launchSongSWF (t, f) {	//	t = title, f = file
//  alert("mp3_preview.html?MP3_title=" + t + "&MP3_file=" + a + "/" + f);
	window.open("http://www.carbombcult.com/song_swf_player.php?MP3_title=" + t + "&MP3_file=" + f, "CARBOMB_preview", "width=220,height=100,status=no,location=no,menubar=no,scrollbars=no,resizable=yes,toolbar=no");
}


function launchLargerImage (picName) {
	var windowWidth = 520;
	var windowHeight = 550;
	
	var xPos = (screen.availWidth - windowWidth) / 2;
	var yPos = ((screen.availHeight - windowHeight) / 2 ) - 30;
	var attribs = "width=" + windowWidth + ",height=" + windowHeight + ",left=" + xPos + ",top=" + yPos + ",scrollbars=0,resizable=no,status=no,toolbar=no";
	
	var popupLink = "larger_image_popup.html?pic=" + picName;
	window.open (popupLink, "largerImageWindow", attribs);
}

function launchShowDetails (ID) {
	var windowWidth = 550;
	var windowHeight = 300;
	
	var xPos = (screen.availWidth - windowWidth) / 2;
	var yPos = ((screen.availHeight - windowHeight) / 2 ) - 30;
	var attribs = "width=" + windowWidth + ",height=" + windowHeight + ",left=" + xPos + ",top=" + yPos + ",scrollbars=0,resizable=no,status=no,toolbar=no";
	
	var popupLink = "show_details.php?ID=" + ID;
	window.open (popupLink, "largerImageWindow", attribs);
}



