self.defaultStatus = "Welcome to the Herefordshire Youth Council Website";

function getElemId(objectID){return document.getElementById(objectID);}
function getElemAll(objectID){return document.all[objectID];}
var getElem = (document.getElementById) ? getElemId : getElemAll;

var picturenumber = 0;

function show(filename,picnum){
	getElem("mid").src = "midsize/" + filename;
	picturenumber = picnum;
}
function big(wide,high){
	var params = 'width=' + wide + ',height=' + high + ',status=yes';
	var filename = 'big.picture.php5?' + picturenumber;
	window.open(filename,'jim','width=600,height=600,status=yes');
}


