// JavaScript Document

function arraygetpost(ar,value)
{
	for(i=0;i<ar.length;i++)
		if(ar[i]==value)
			return i
	return -1
}