﻿/*
*
* Lightbox utilities.
*
* By Vladislovas Razas
* 
*/

/*
* Displays lightbox.
*/
function activateLightBox(rel, href) {
	lightbox.prototype.content = href;
	lightbox.prototype.popupType = rel;
	lightbox.prototype.activate();
}

function deactivateLightBox(rel, href) {
		lightbox.prototype.content = href;
		lightbox.prototype.popupType = rel;
		lightbox.prototype.deactivate();
}
