// JavaScript Document

window.onload = function() {
	/*if(document.getElementById('artist').value=="Mike Turrento") {
		openwindow('http://www.miketurrento.com', 'Mike Turrento');
	}*/
}

function openwindow(slink, name) {
	mywindow = window.open(slink, name);
	mywindow.focus();
}
