function popUp(strURL,strHeight,strWidth) {
var strOptions="";
strOptions="status,height="+strHeight+",width="+strWidth;
window.open(strURL, 'newWin', strOptions);
}
/* This is needed to initiallise the gallery popup thingy*/
/*
$(document).ready(function(){
		$("a[rel^='prettyPhoto']").prettyPhoto();
	});
*/
$(document).ready(function(){
			$("a[rel^='prettyOverlay'],a[rel^='prettyPhoto']").prettyPhoto({
				animationSpeed: 'normal', /* fast/slow/normal */
				padding: 40, /* padding for each side of the picture */
				opacity: 0.35, /* Value betwee 0 and 1 */
				showTitle: true, /* true/false */
				allowresize: true /* true/false */
			});
		});
/* This is needed to initiallise the on mouse over*/
  function mouseOver(mOver, buttonID) 

       {

           var id = document.getElementById(buttonID);

           id.src = mOver;

       }

       function mouseOut(mOut, buttonID) 

       {

           var id = document.getElementById(buttonID);

           id.src = mOut;

       }

	

