// JavaScript Document

function rollImg(id, theImg) {
		var imgObj = document.getElementById(id);
		imgObj.src = theImg;
	}

function getParameter(param)
{ 
	param = param.replace(/[\[]/,"\\\[").replace(/[\]]/,"\\\]"); 
	var r = "[\\?&]"+param+"=([^&#]*)"; 
	var reg = new RegExp(r); 
	var p = reg.exec( window.location.href ); 
	if( p == null )    return ""; 
	else return p[1];
}

function createPopup(imgSrc,imgTitle,imgDescrip,width,height) {
	var theImage = new Image();
	theImage.src = imgSrc;
	//alert( imgSrc + "\n" + imgTitle + "\n" + imgDescrip + "\n" + width + " x " + height );
	document.getElementById('modal_pic').innerHTML = "<img src='" + theImage.src + "' onclick='hideModal()' style='border: 10px #ffffff solid;' />";
	document.getElementById('modal_text').innerHTML = "<p><strong>" + imgTitle + "</strong></p><p>" + imgDescrip + "</p>";
	Popup.showModal('modal',null,null,{'screenColor':'#000000','screenOpacity':.8});return false;
}

function hideModal() {
	Popup.hide('modal');
}





// ---------------------------------- ADMIN FUNCTIONS ----------------------------------------------------- 

