function showHide(id){
   el = document.getElementById(id);
   el.style.display = (el.style.display != 'block')? 'block' : 'none';
}
function popup(link,window_name,width,height){
	window.open(link,window_name,'width='+width+',height='+height+',scrollbar=1,resizable=1');
}
