function getEle(id){
	return document.getElementById(id);
}

function popImage(id){
	
	width = 350;
	height = 350;
	
	myleft = (screen.width/2) - (width/2);
	mytop = (screen.height/2) - (height/2);
	pop = window.open('/pop.php?id=' + id + '', 'pop', 'left=' + myleft +', top='+ mytop +', width=350, height=350, resizable=no, scrollbars=no, status=no, toolbar=no, titlebar=no, menubar=no');
}
