// JavaScript Document
function show(img)
{
	document.getElementById('background').src = 'images/backgrounds/' + img;
}

function winPop(url){
	var glry = window.open(url,"gallery","left=300,top=300,width=500,height=500,scrollbars,resizable,menubar,status");
	glry.focus();
}