function popup(linkURL) {
	window.open(linkURL,'popup','width=100,height=100,fullscreen=no,scrollbars=no')
}

function shhi(elementid){
if (document.getElementById(elementid).style.display == 'none'){
document.getElementById(elementid).style.display = '';
} else {
document.getElementById(elementid).style.display = 'none';
}
} 
