
<!-- Begin

var curr_id = '';
function pop(id) {
	if(curr_id !== ''){
		if (document.getElementById(curr_id).style.display == "block"){
			document.getElementById(curr_id).style.display = "none";
		} 
	}
	
	if (document.getElementById(id).style.display == "block"){
		document.getElementById(id).style.display = "none";
	} 
	else {
		document.getElementById(id).style.display = "block";
		document.getElementById(id).style.top 		= 200;
		document.getElementById(id).style.left 		= ((screen.width - 500) / 2);
		curr_id = id;
	}
}

function clse(id) {
	if (document.getElementById(id).style.display == "block"){
		document.getElementById(id).style.display = "none";
	}
}
// End -->
