var counter=0;
function singleClick()
{
counter++;
if(counter > 1) 
{ 
return false; 
}
else
{
return true;
}
}
