var pop_cotiz;
var pop_log;

function pop_hacienda(grupo,ids){
	pop_cotiz = pop_up('pophacienda.php?grupo=' + grupo + '&ids=' + ids, 'pop_cotiz', 'scrollbars=no,resizable=no,width=442,height=550');
	pop_cotiz.focus();
	setTimeout('check_pop_cotiz();',2000);
}

function pop_agro(cereal){
	pop_cotiz = pop_up('popagro.php?cereal=' + cereal, 'pop_cotiz', 'scrollbars=no,resizable=no,width=442,height=450');
	pop_cotiz.focus();
	setTimeout('check_pop_cotiz();',2000);
}

function pop_termino(id){
	pop_cotiz = pop_up('poptermino.php?id=' + id, 'pop_cotiz', 'scrollbars=no,resizable=no,width=442,height=450');
	pop_cotiz.focus();
	setTimeout('check_pop_cotiz();',2000);
}

function check_pop_cotiz() {
	if (!pop_cotiz)
		alert('No se pudo abrir la ventana Pop Up.\nPor favor, si tiene un bloqueo de ventanas Pop Up,\ndeshabilítelo para esta página.\n\nMuchas gracias!');
}

function pop_up(url,name,features) {
	return window.open (url, name, features);
}

function pop_login() {
	pop_log = pop_up('poplogin.php', 'pop_log', 'scrollbars=no,resizable=no,width=442,height=300');
	pop_log.focus();
	setTimeout('check_pop_login();',2000);
}

function check_pop_login() {
	if (!pop_log)
		alert('No se pudo abrir la ventana Pop Up.\nPor favor, si tiene un bloqueo de ventanas Pop Up,\ndeshabilítelo para esta página.\n\nMuchas gracias!');
}

