/*--------------------------------------------------------------------------*/
/*	Modal Windows	
*	
*	
*/

function launchModal() { new Lightbox.base('note2'); }
function launchModalinfo() { new Lightbox.base('sign-in-info'); }
function launchModalpassword() { new Lightbox.base('forgot-password'); }
function launchModal1() { new Lightbox.base('edit-photo'); }
function launchModal2() { new Lightbox.base('delete-photo'); }
function launchModal3() { new Lightbox.base('warning-message'); }
function launchModalUpload() { new Lightbox.base('upload-message'); }

function launchModal_albumPreview(albumID,albumName) { 
	this_albumID = albumID;
	this_iFrame = document.getElementById('previewFrame');
	//set src of iFrame
	this_iFrame.src = '/photo-site/includes/album_preview.cfm?albumID='+albumID;
	//display album name
	document.getElementById('previewAlbumName').innerHTML = ': '+albumName;
	//display modal
	new Lightbox.base('albumPreview'); 
}


