//the next 3 lines are browser detection for user-agent DOMs
ns4 = (document.layers) ? true:false //required for Functions to work
ie4 = (document.all) ? true:false //required for Functions to work
ng5 = (document.getElementById) ? true:false //required for Functions to work

//thin-lips
function hide_popup(whichOne) 
{
	document.getElementById(whichOne).style.visibility = "hidden"
}

function show_popup(whichOne)  
{
	hide_popup('thin-lips')
	hide_popup('spider-veins')
	hide_popup('crows-feet')
	hide_popup('crows-feet-left')
	hide_popup('frown-lines')
	hide_popup('moles')
	hide_popup('hair')
	hide_popup('forehead')
	hide_popup('brown-spot')
	hide_popup('marionette')
	hide_popup('smile-lines')
	hide_popup('cheek')
	hide_popup('pore')
		
	document.getElementById(whichOne).style.visibility = "visible"
}

