function popup(){
	document.getElementById('sample').onclick = regularPopup;
	document.getElementById('close-button').onclick = regularHide;
	
}
function regularPopup(){
	document.getElementById('regular-popup').style.display="block";
}
function regularHide(){
	document.getElementById('regular-popup').style.display="none";
}

addLoadEvent(popup);
