function imgClick(img){
	var i=document.getElementById('iPanel');
	i.src="images/"+img;
}
function popWin(u){
	var w=600;
	var h=520;
	var x=parseInt((screen.width-w)/2);
	var y=parseInt((screen.height-h)/2);
	window.open(u, 'pop', 'top='+y+', left='+x+', width='+w+', height='+h+', status=no, toolbar=no, menubar=no, location=no, scrollbars=yes').focus();
}