var popUp;
window.onload = function(){
	popUp = document.getElementById('popup');
	showPop(58);
}
function showPop(seconds){
	popUp.style.display = 'inline';
	setTimeout('hidePop()', seconds * 1000);
}

function hidePop(){
	popUp.style.display = 'none';
}