function displayName(name,email,number,id) {
        text2 = '<div class="row">' + 
	        '<strong>name:</strong> ' + name + '<br>' + 
		'<strong>e-mail:</strong> ' + email + '<br>' + 
		'<strong>mobile no:</strong> ' + number +
		'</div>';
       
	if (document.getElementById) {
		x = document.getElementById(id);
		x.innerHTML = '';
		x.innerHTML = text2;
	}
	else if (document.all) {
		x = document.all[id];
		x.innerHTML = text2;
	}
	else if (document.layers) {
		x = document.layers[id];
		x.document.open();
		x.document.write(text2);
		x.document.close();
	}
}