function mostrarPopUpRegistro(value){
	if(value == true){
		$("#linkPopupPreregistro").click();
	}
}


function mostrarPopUpManofactura(value){
	if(value == true){
		$("#linkPopupManofactura").click();
	}
}

function popupIngresePre() {
	$("#linkPopupPreregistro").prettyPhoto({
		social_tools : '',
		default_width : 640,
		default_height : 250,
		show_title : false,
		gallery_markup : '',
		overlayClose : false,
    	allow_resize : false,
		allow_expand : false,
		modal: true,
		callback : function() {
			cerrarErroresNoty();
			CerrarPopUpRegistro();
		}
	});
}

function popupManoFactura() {
	$("#linkPopupManofactura").prettyPhoto({
		social_tools : '',
		default_width : 775,
		default_height : 400,
		show_title : false,
		gallery_markup : '',
		overlayClose : false,
    	allow_resize : false,
		allow_expand : false,
		modal: true,
		callback : function() {
			cerrarErroresNoty();
			cerrarPopUpRegistroManofactura();
		}
	});
}

