// JavaScript Document

var hidnum = 1;

function popup() {
alert("Test Success")
}


function specials(id){
	if(hidnum == 1){
	document.getElementById(id).style.display = 'block';
	hidnum = 2;}
	else{
	hidnum = 1;
	document.getElementById(id).style.display = 'none';}

}