
wait_message_for_widgets = '<table width="100%" height="100%"><tr><td class="content" align="center" valign="middle">Por favor espera...</td></tr></table>';

function standardTableRowHandler(tableRow, rowIndex, gridSelectionsArray, highLight) {
	if (highLight == 0) {
		tableRow.className = "standar_table_row";
	} else if (highLight == 1) {
		tableRow.className = "standar_table_row_mouseover";
	} 
}

function standardTableSearchHandler(evt, self_link_reference, extra_conditions, sorting, target_div, table_id) {
	if (evt.keyCode == 13) {
		generateStandardGridConnector(self_link_reference, '0', extra_conditions, sorting, target_div, document.getElementById('standar_grid_filter_' + table_id).value);
	}
}

function getURL(theUrl) {
	document.location.href = theUrl;
}

function generateStandardGridConnector(self_link_reference, offset, extra_conditions, sorting, target_div, filtering) {
	xajax_generateStandarTableConnector(self_link_reference, offset, extra_conditions, sorting, target_div, filtering);
}