var FormTblProfiles;
var FormSearch;	
var FormPrintProfile;
var TblProfilesPageIndex;
var TblProfilesPageCount;

function TblProfilesOnMoveFirst()
{
	TblOnMoveFirst(FormTblProfiles, FormSearch);				
}

function TblProfilesOnMovePrevious()
{
	TblOnMovePrevious(FormTblProfiles, FormSearch, TblProfilesPageIndex);				
}

function TblProfilesOnMoveNext()
{
	TblOnMoveNext(FormTblProfiles, FormSearch, TblProfilesPageIndex);						
}

function TblProfilesOnMoveLast()
{
	TblOnMoveLast(FormTblProfiles, FormSearch, TblProfilesPageCount);				
}

function DoSearch()
{
	return _DoSearch(FormTblProfiles, FormSearch);
}

function ShowCoverProfile(IdProfile)
{
	FormTblProfiles["hdSearch"].value = FormSearch["edSearch"].value;
	FormTblProfiles["hdIdCoverProfile"].value = IdProfile;
	FormTblProfiles["hdPageIndex"].value = TblProfilesPageIndex;
	FormTblProfiles.submit();
}

function PrintProfile()
{
	FormPrintProfile.submit();	
}

function SendTo()
{
	OpenNewWindow("/deperfil/SendTo1.asp", "Window_SendTo", "width=401,height=232,scrollbars=no,resize=no", false);
}

function PageLoaded()
{
}

