// Popup window
function openBrowserWindow(theURL,winName,features) {
	window.open(theURL,winName,features);
}

$(document).ready(function(){
	
	$("#launch_player").click(function(e){
		e.preventDefault();
		openBrowserWindow('player04.html','Player','toolbar=no,location=no,status=no,menubar=no,scrollbars=no,resizable=no,width=420,height=225');
	});
	
	$(".launch_photos").click(function(e){
		e.preventDefault();
		openBrowserWindow('photo.asp?i=41','Player','toolbar=no,location=no,status=no,menubar=no,scrollbars=no,resizable=no,width=920,height=650');
	});
	
});

