function launch() {
	window.open('Home.aspx', 'KnudsenSisters', 'toolbars=no, resizable=no, status=no, location=no, scrollbars=no, width=1024, height=700');
	return false;
}

var img = new Array(17);

function preload() {
	img[0] = "../images/song01-hot.png";
	img[1] = "../images/song02-hot.png";
	img[2] = "../images/song03-hot.png";
	img[3] = "../images/song04-hot.png";
	img[4] = "../images/song05-hot.png";
	img[5] = "../images/song06-hot.png";
	img[6] = "../images/song07-hot.png";
	img[7] = "../images/song08-hot.png";
	img[8] = "../images/song09-hot.png";

	img[9] = "../images/sally-hot.png";
	img[10] = "../images/julie-hot.png";
	img[11] = "../images/jenny-hot.png";
	img[12] = "../images/karen-hot.png";
	img[13] = "../images/marilyn-hot.png";
	img[14] = "../images/liz-hot.png";
	img[15] = "../images/rachel-hot.png";
	img[16] = "../images/kristen-hot.png";

	var imgObj = new Image();
	for ( i = 0; i < img.length; i++ ) {
		imgObj.src = img[i];
	}
	
	/*
	var tmp = null;
	for ( var i = 0; i < img.length; i++ ) {
		tmp = img[i];
		img[i] = new image();
		document.title = img[i].src;
		img[i].src = tmp;
	}
	*/
}

function chg(elem, i) {
	var tmp = elem.src;
	elem.src = img[i];
	img[i] = tmp;
}

function status(txt) {
	var footer = document.getElementById("footerContents");
	if ( footer ) {
		if ( txt )
			footer.innerHTML = txt;
		else
			footer.innerHTML = "";
	}
}

function setPhoto(ctlId, url) {
	var ctl = document.getElementById(ctlId);
	if ( ctl ) {
		ctl.src = "/images/photos/" + url;
		ctl.style.display = "block";
	}
}


void(preload());